diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-05-07 22:57:20 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-05-07 22:57:20 +0000 |
| commit | b80de1012ae346786dbb019ed6bdf8ba8820d8ab (patch) | |
| tree | cefe0c88c0db0714dd993397bfcc0685254cd7c1 /llvm/test/Transforms/GlobalOpt | |
| parent | b2becfdbaee499538f4d1c8aa514daa29e3c6b6d (diff) | |
| download | bcm5719-llvm-b80de1012ae346786dbb019ed6bdf8ba8820d8ab.tar.gz bcm5719-llvm-b80de1012ae346786dbb019ed6bdf8ba8820d8ab.zip | |
IR: Don't allow non-default visibility on local linkage
Visibilities of `hidden` and `protected` are meaningless for symbols
with local linkage.
- Change the assembler to reject non-default visibility on symbols
with local linkage.
- Change the bitcode reader to auto-upgrade `hidden` and `protected`
to `default` when the linkage is local.
- Update LangRef.
<rdar://problem/16141113>
llvm-svn: 208263
Diffstat (limited to 'llvm/test/Transforms/GlobalOpt')
| -rw-r--r-- | llvm/test/Transforms/GlobalOpt/alias-used-section.ll | 4 | ||||
| -rw-r--r-- | llvm/test/Transforms/GlobalOpt/atexit.ll | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/Transforms/GlobalOpt/alias-used-section.ll b/llvm/test/Transforms/GlobalOpt/alias-used-section.ll index 987c4a4926d..121793724d7 100644 --- a/llvm/test/Transforms/GlobalOpt/alias-used-section.ll +++ b/llvm/test/Transforms/GlobalOpt/alias-used-section.ll @@ -1,8 +1,8 @@ ; RUN: opt -S -globalopt < %s | FileCheck %s @_Z17in_custom_section = internal global i8 42, section "CUSTOM" -@in_custom_section = protected dllexport alias internal i8* @_Z17in_custom_section +@in_custom_section = dllexport alias internal i8* @_Z17in_custom_section -; CHECK: @in_custom_section = internal protected dllexport global i8 42, section "CUSTOM" +; CHECK: @in_custom_section = internal dllexport global i8 42, section "CUSTOM" @llvm.used = appending global [1 x i8*] [i8* @in_custom_section], section "llvm.metadata" diff --git a/llvm/test/Transforms/GlobalOpt/atexit.ll b/llvm/test/Transforms/GlobalOpt/atexit.ll index dbcd0d7b00b..55c2dab1c1d 100644 --- a/llvm/test/Transforms/GlobalOpt/atexit.ll +++ b/llvm/test/Transforms/GlobalOpt/atexit.ll @@ -1,6 +1,6 @@ ; RUN: opt < %s -globalopt -S | FileCheck %s ; CHECK: ModuleID -define internal hidden i32 @__cxa_atexit(void (i8*)* nocapture %func, i8* nocapture %arg, i8* nocapture %dso_handle) nounwind readnone optsize noimplicitfloat { +define internal i32 @__cxa_atexit(void (i8*)* nocapture %func, i8* nocapture %arg, i8* nocapture %dso_handle) nounwind readnone optsize noimplicitfloat { unreachable } |

