diff options
Diffstat (limited to 'test/CodeGen/PowerPC/ppc32-pic.ll')
-rw-r--r-- | test/CodeGen/PowerPC/ppc32-pic.ll | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/ppc32-pic.ll b/test/CodeGen/PowerPC/ppc32-pic.ll new file mode 100644 index 0000000..f9c3467 --- /dev/null +++ b/test/CodeGen/PowerPC/ppc32-pic.ll @@ -0,0 +1,16 @@ +; RUN: llc < %s -mtriple=powerpc-unknown-linux-gnu -relocation-model=pic | FileCheck -check-prefix=SMALL-BSS %s +@bar = common global i32 0, align 4 + +define i32 @foo() { +entry: + %0 = load i32* @bar, align 4 + ret i32 %0 +} + +!llvm.module.flags = !{!0} +!0 = metadata !{i32 1, metadata !"PIC Level", i32 1} +; SMALL-BSS-LABEL:foo: +; SMALL-BSS: bl _GLOBAL_OFFSET_TABLE_@local-4 +; SMALL-BSS: mflr 30 +; SMALL-BSS: lwz [[VREG:[0-9]+]], bar@GOT(30) +; SMALL-BSS: lwz {{[0-9]+}}, 0([[VREG]]) |