Enable machine cse pass.
[oota-llvm.git] / test / CodeGen / X86 / 2009-08-06-inlineasm.ll
1 ; RUN: llc -mtriple=i386-pc-linux-gnu < %s
2 ; PR4668
3 ; XFAIL: *
4 ; FIXME: If the coalescer happens to coalesce %level.1 with the copy to EAX
5 ; (for ret) then this will fail to compile. The fundamental problem is
6 ; once the coalescer fixes a virtual register to physical register we can't
7 ; evict it.
8
9 define i32 @x(i32 %qscale) nounwind {
10 entry:
11         %temp_block = alloca [64 x i16], align 16               ; <[64 x i16]*> [#uses=0]
12         %tmp = call i32 asm sideeffect "xor %edx, %edx", "={dx},~{dirflag},~{fpsr},~{flags}"() nounwind         ; <i32> [#uses=1]
13         br i1 undef, label %if.end78, label %if.then28
14
15 if.then28:              ; preds = %entry
16         br label %if.end78
17
18 if.end78:               ; preds = %if.then28, %entry
19         %level.1 = phi i32 [ %tmp, %if.then28 ], [ 0, %entry ]          ; <i32> [#uses=1]
20         %add.ptr1 = getelementptr [64 x i16]* null, i32 0, i32 %qscale          ; <i16*> [#uses=1]
21         %add.ptr2 = getelementptr [64 x i16]* null, i32 1, i32 %qscale          ; <i16*> [#uses=1]
22         %add.ptr3 = getelementptr [64 x i16]* null, i32 2, i32 %qscale          ; <i16*> [#uses=1]
23         %add.ptr4 = getelementptr [64 x i16]* null, i32 3, i32 %qscale          ; <i16*> [#uses=1]
24         %add.ptr5 = getelementptr [64 x i16]* null, i32 4, i32 %qscale          ; <i16*> [#uses=1]
25         %add.ptr6 = getelementptr [64 x i16]* null, i32 5, i32 %qscale          ; <i16*> [#uses=1]
26         %tmp1 = call i32 asm sideeffect "nop", "={ax},r,r,r,r,r,0,~{dirflag},~{fpsr},~{flags}"(i16* %add.ptr6, i16* %add.ptr5, i16* %add.ptr4, i16* %add.ptr3, i16* %add.ptr2, i16* %add.ptr1) nounwind         ; <i32> [#uses=0]
27         ret i32 %level.1
28 }