diff options
Diffstat (limited to 'test/CodeGen/X86/ga-offset.ll')
-rw-r--r-- | test/CodeGen/X86/ga-offset.ll | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGen/X86/ga-offset.ll b/test/CodeGen/X86/ga-offset.ll new file mode 100644 index 0000000000..cc93b4c2ee --- /dev/null +++ b/test/CodeGen/X86/ga-offset.ll @@ -0,0 +1,18 @@ +; RUN: llvm-as < %s | llc -march=x86 > %t +; RUN: not grep lea %t +; RUN: not grep add %t +; RUN: grep mov %t | count 1 +; RUN: llvm-as < %s | llc -march=x86-64 -relocation-model=static > %t +; RUN: not grep lea %t +; RUN: not grep add %t +; RUN: grep mov %t | count 1 + +; This store should fold to a single mov instruction. + +@ptr = global i32* null +@dst = global [131072 x i32] zeroinitializer + +define void @foo() nounwind { + store i32* getelementptr ([131072 x i32]* @dst, i32 0, i32 16), i32** @ptr + ret void +} |