diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2008-12-05 01:06:39 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2008-12-05 01:06:39 +0000 |
| commit | 2a03c7e977b7a7bd923c8f8c41c0e81e3b96f63e (patch) | |
| tree | b04c06f8152f3ad50cf9a947732418d8097e3477 /llvm/test/CodeGen/PowerPC/hidden-vis-2.ll | |
| parent | d368de794af01b50d269306649f02128e4fbbbea (diff) | |
| download | bcm5719-llvm-2a03c7e977b7a7bd923c8f8c41c0e81e3b96f63e.tar.gz bcm5719-llvm-2a03c7e977b7a7bd923c8f8c41c0e81e3b96f63e.zip | |
Re-did 60519. It turns out Darwin's handling of hidden visibility symbols are a bit more complicate than I expected. Both declarations and weak definitions still need a stub indirection. However, the stubs are in data section and they contain the addresses of the actual symbols.
llvm-svn: 60571
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/hidden-vis-2.ll')
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/hidden-vis-2.ll | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/hidden-vis-2.ll b/llvm/test/CodeGen/PowerPC/hidden-vis-2.ll new file mode 100644 index 00000000000..4c9ae552f7c --- /dev/null +++ b/llvm/test/CodeGen/PowerPC/hidden-vis-2.ll @@ -0,0 +1,12 @@ +; RUN: llvm-as < %s | llc -mtriple=powerpc-apple-darwin9 | grep non_lazy_ptr | count 6 + +@x = external hidden global i32 ; <i32*> [#uses=1] +@y = extern_weak hidden global i32 ; <i32*> [#uses=1] + +define i32 @t() nounwind readonly { +entry: + %0 = load i32* @x, align 4 ; <i32> [#uses=1] + %1 = load i32* @y, align 4 ; <i32> [#uses=1] + %2 = add i32 %1, %0 ; <i32> [#uses=1] + ret i32 %2 +} |

