diff options
Diffstat (limited to 'test/CodeGen/SPARC/2009-08-28-PIC.ll')
-rw-r--r-- | test/CodeGen/SPARC/2009-08-28-PIC.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/CodeGen/SPARC/2009-08-28-PIC.ll b/test/CodeGen/SPARC/2009-08-28-PIC.ll new file mode 100644 index 0000000..a2ba0d0 --- /dev/null +++ b/test/CodeGen/SPARC/2009-08-28-PIC.ll @@ -0,0 +1,9 @@ +; RUN: llc -march=sparc --relocation-model=pic < %s | grep _GLOBAL_OFFSET_TABLE_ + +@foo = global i32 0 ; <i32*> [#uses=1] + +define i32 @func() nounwind readonly { +entry: + %0 = load i32* @foo, align 4 ; <i32> [#uses=1] + ret i32 %0 +} |