summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/private.ll
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2009-01-25 06:32:01 +0000
committerEvan Cheng <evan.cheng@apple.com>2009-01-25 06:32:01 +0000
commit1902a129a5b9fc9ac1ecbaf76d2ff7a1bf04691a (patch)
treeec63fc2cedaae38905341d54f015c0acfb144ba0 /test/CodeGen/PowerPC/private.ll
parentd498c8f2c8eb5598bf2e0c3ab30016734e490c6b (diff)
downloadllvm-1902a129a5b9fc9ac1ecbaf76d2ff7a1bf04691a.tar.gz
llvm-1902a129a5b9fc9ac1ecbaf76d2ff7a1bf04691a.tar.bz2
llvm-1902a129a5b9fc9ac1ecbaf76d2ff7a1bf04691a.tar.xz
Private linkage support for PPC / Darwin.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62955 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/private.ll')
-rw-r--r--test/CodeGen/PowerPC/private.ll5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/private.ll b/test/CodeGen/PowerPC/private.ll
index e25d2936b7..0f0d13492a 100644
--- a/test/CodeGen/PowerPC/private.ll
+++ b/test/CodeGen/PowerPC/private.ll
@@ -5,6 +5,11 @@
; RUN: grep bl.*\.Lfoo %t
; RUN: grep .Lbaz: %t
; RUN: grep lis.*\.Lbaz %t
+; RUN: llvm-as < %s | llc -mtriple=powerpc-apple-darwin > %t
+; RUN: grep L_foo: %t
+; RUN: grep bl.*\L_foo %t
+; RUN: grep L_baz: %t
+; RUN: grep lis.*\L_baz %t
declare void @foo()