Set the body of a new struct as soon as it is created.
[oota-llvm.git] / test / ExecutionEngine / MCJIT / non-extern-addend-smallcodemodel.ll
1 ; RUN: %lli -code-model=small %s > /dev/null
2 ; XFAIL: mips
3 ; XFAIL: x86_64
4 ;
5 ; FIXME: Merge this file with non-extern-addend.ll once AArch64 supports PC-rel
6 ;        relocations in ELF. (The code is identical, only the run line differs).
7 ;
8 define i32 @foo(i32 %x, i32 %y, double %d) {
9 entry:
10   %d.int64 = bitcast double %d to i64
11   %d.top64 = lshr i64 %d.int64, 32
12   %d.top   = trunc i64 %d.top64 to i32
13   %d.bottom = trunc i64 %d.int64 to i32
14   %topCorrect = icmp eq i32 %d.top, 3735928559
15   %bottomCorrect = icmp eq i32 %d.bottom, 4277009102
16   %right = and i1 %topCorrect, %bottomCorrect
17   %nRight = xor i1 %right, true
18   %retVal = zext i1 %nRight to i32
19   ret i32 %retVal
20 }
21
22 define i32 @main() {
23 entry:
24   %call = call i32 @foo(i32 0, i32 1, double 0xDEADBEEFFEEDFACE)
25   ret i32 %call
26 }