diff options
| author | bors <bors@rust-lang.org> | 2015-09-09 03:46:32 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-09-09 03:46:32 +0000 |
| commit | 55da0e0000982f63932ad0683df2268fef193dab (patch) | |
| tree | 6261f9839d20543ed2e8c7f7a8bd11a6979731dd | |
| parent | 44e657312e5a8084dd40ae9ba6550145f583e793 (diff) | |
| parent | ba72d9722caf48ad5f184d4da61117f80d98761e (diff) | |
| download | rust-55da0e0000982f63932ad0683df2268fef193dab.tar.gz rust-55da0e0000982f63932ad0683df2268fef193dab.zip | |
Auto merge of #28277 - DiamondLovesYou:intrinsic-unnamed-addr, r=huonw
Intrinsics never have an address, so it doesn't make sense to say that their address is unnamed.
| -rw-r--r-- | src/librustc_trans/trans/context.rs | 2 | ||||
| -rw-r--r-- | src/test/codegen/intrinsic-no-unnamed-attr.rs | 22 |
2 files changed, 24 insertions, 0 deletions
diff --git a/src/librustc_trans/trans/context.rs b/src/librustc_trans/trans/context.rs index fd8dbe83add..75874963f5f 100644 --- a/src/librustc_trans/trans/context.rs +++ b/src/librustc_trans/trans/context.rs @@ -798,6 +798,7 @@ fn declare_intrinsic(ccx: &CrateContext, key: &str) -> Option<ValueRef> { if key == $name { let f = declare::declare_cfn(ccx, $name, Type::func(&[], &$ret), ccx.tcx().mk_nil()); + llvm::SetUnnamedAddr(f, false); ccx.intrinsics().borrow_mut().insert($name, f.clone()); return Some(f); } @@ -806,6 +807,7 @@ fn declare_intrinsic(ccx: &CrateContext, key: &str) -> Option<ValueRef> { if key == $name { let f = declare::declare_cfn(ccx, $name, Type::func(&[$($arg),*], &$ret), ccx.tcx().mk_nil()); + llvm::SetUnnamedAddr(f, false); ccx.intrinsics().borrow_mut().insert($name, f.clone()); return Some(f); } diff --git a/src/test/codegen/intrinsic-no-unnamed-attr.rs b/src/test/codegen/intrinsic-no-unnamed-attr.rs new file mode 100644 index 00000000000..0f239c84265 --- /dev/null +++ b/src/test/codegen/intrinsic-no-unnamed-attr.rs @@ -0,0 +1,22 @@ +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// compile-flags: -C no-prepopulate-passes + +#![feature(intrinsics)] + +extern "rust-intrinsic" { + fn sqrtf32(x: f32) -> f32; +} +// CHECK: @llvm.sqrt.f32(float) #{{[0-9]*}} + +fn main() { + unsafe { sqrtf32(0.0f32); } +} |
