summaryrefslogtreecommitdiff
path: root/test/Assembler/private-hidden-function.ll
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-05-07 22:57:20 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2014-05-07 22:57:20 +0000
commit76c17d324ca877420e4be98638ef15a62b2efa4e (patch)
tree85e8ac4d8dd476be62d4f3dc212c8d6c7b29c043 /test/Assembler/private-hidden-function.ll
parentc7e175a743babd383384aa3ca870f2406a8861da (diff)
downloadllvm-76c17d324ca877420e4be98638ef15a62b2efa4e.tar.gz
llvm-76c17d324ca877420e4be98638ef15a62b2efa4e.tar.bz2
llvm-76c17d324ca877420e4be98638ef15a62b2efa4e.tar.xz
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> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208263 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/private-hidden-function.ll')
-rw-r--r--test/Assembler/private-hidden-function.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Assembler/private-hidden-function.ll b/test/Assembler/private-hidden-function.ll
new file mode 100644
index 0000000000..dd73f0413b
--- /dev/null
+++ b/test/Assembler/private-hidden-function.ll
@@ -0,0 +1,7 @@
+; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
+
+define private hidden void @function() {
+; CHECK: symbol with local linkage must have default visibility
+entry:
+ ret void
+}