pass machinemoduleinfo down into getSymbolForDwarfGlobalReference,
[llvm/avr.git] / test / CodeGen / X86 / ga-offset.ll
blob9f6d3f75cf843a5e7bd65a9f284361d9e4dd650b
1 ; RUN: llc < %s -march=x86 > %t
2 ; RUN: not grep lea %t
3 ; RUN: not grep add %t
4 ; RUN: grep mov %t | count 1
5 ; RUN: llc < %s -mtriple=x86_64-linux -relocation-model=static > %t
6 ; RUN: not grep lea %t
7 ; RUN: not grep add %t
8 ; RUN: grep mov %t | count 1
10 ; This store should fold to a single mov instruction.
12 @ptr = global i32* null
13 @dst = global [131072 x i32] zeroinitializer
15 define void @foo() nounwind {
16   store i32* getelementptr ([131072 x i32]* @dst, i32 0, i32 16), i32** @ptr
17   ret void