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/Assembler/internal-hidden-variable.ll | |
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/Assembler/internal-hidden-variable.ll')
-rw-r--r-- | llvm/test/Assembler/internal-hidden-variable.ll | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/Assembler/internal-hidden-variable.ll b/llvm/test/Assembler/internal-hidden-variable.ll new file mode 100644 index 00000000000..eddd06758a0 --- /dev/null +++ b/llvm/test/Assembler/internal-hidden-variable.ll @@ -0,0 +1,4 @@ +; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s + +@var = internal hidden global i32 0 +; CHECK: symbol with local linkage must have default visibility |