CodeGen peephole: fold redundant phys reg copies
[oota-llvm.git] / test / CodeGen / X86 / soft-fp.ll
1 ; RUN: llc < %s -march=x86    -mattr=+sse2,+soft-float | FileCheck %s
2 ; RUN: llc < %s -march=x86-64 -mattr=+sse2,+soft-float | FileCheck %s
3 ; RUN: llc < %s -mtriple=x86_64-gnux32 -mattr=+sse2,+soft-float | FileCheck %s
4
5 ; CHECK-NOT: xmm{[0-9]+}
6
7 %struct.__va_list_tag = type { i32, i32, i8*, i8* }
8
9 define i32 @t1(i32 %a, ...) nounwind {
10 entry:
11         %va = alloca [1 x %struct.__va_list_tag], align 8               ; <[1 x %struct.__va_list_tag]*> [#uses=2]
12         %va12 = bitcast [1 x %struct.__va_list_tag]* %va to i8*         ; <i8*> [#uses=2]
13         call void @llvm.va_start(i8* %va12)
14         %va3 = getelementptr [1 x %struct.__va_list_tag], [1 x %struct.__va_list_tag]* %va, i64 0, i64 0                ; <%struct.__va_list_tag*> [#uses=1]
15         call void @bar(%struct.__va_list_tag* %va3) nounwind
16         call void @llvm.va_end(i8* %va12)
17         ret i32 undef
18 }
19
20 declare void @llvm.va_start(i8*) nounwind
21
22 declare void @bar(%struct.__va_list_tag*)
23
24 declare void @llvm.va_end(i8*) nounwind
25
26 define float @t2(float %a, float %b) nounwind readnone {
27 entry:
28         %0 = fadd float %a, %b          ; <float> [#uses=1]
29         ret float %0
30 }