2009-09-09 01:54:48 +02:00
|
|
|
; RUN: llc < %s -fast-isel -mtriple=i386-apple-darwin | \
|
2008-09-20 00:16:54 +02:00
|
|
|
; RUN: grep lazy_ptr, | count 2
|
2009-09-09 01:54:48 +02:00
|
|
|
; RUN: llc < %s -fast-isel -march=x86 -relocation-model=static | \
|
2008-09-09 03:26:59 +02:00
|
|
|
; RUN: grep lea
|
2008-09-04 08:18:33 +02:00
|
|
|
|
|
|
|
@src = external global i32
|
|
|
|
|
|
|
|
define i32 @loadgv() nounwind {
|
|
|
|
entry:
|
|
|
|
%0 = load i32* @src, align 4
|
|
|
|
%1 = load i32* @src, align 4
|
|
|
|
%2 = add i32 %0, %1
|
2008-09-09 03:26:59 +02:00
|
|
|
store i32 %2, i32* @src
|
2008-09-04 08:18:33 +02:00
|
|
|
ret i32 %2
|
|
|
|
}
|
2008-09-09 03:26:59 +02:00
|
|
|
|
|
|
|
%stuff = type { i32 (...)** }
|
|
|
|
@LotsStuff = external constant [4 x i32 (...)*]
|
|
|
|
|
|
|
|
define void @t(%stuff* %this) nounwind {
|
|
|
|
entry:
|
|
|
|
store i32 (...)** getelementptr ([4 x i32 (...)*]* @LotsStuff, i32 0, i32 2), i32 (...)*** null, align 4
|
|
|
|
ret void
|
|
|
|
}
|