AVX512: Implemented encoding and intrinsics for vpalignr
[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
4 ; CHECK-NOT: xmm{[0-9]+}
5
6 %struct.__va_list_tag = type { i32, i32, i8*, i8* }
7
8 define i32 @t1(i32 %a, ...) nounwind {
9 entry:
10         %va = alloca [1 x %struct.__va_list_tag], align 8               ; <[1 x %struct.__va_list_tag]*> [#uses=2]
11         %va12 = bitcast [1 x %struct.__va_list_tag]* %va to i8*         ; <i8*> [#uses=2]
12         call void @llvm.va_start(i8* %va12)
13         %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]
14         call void @bar(%struct.__va_list_tag* %va3) nounwind
15         call void @llvm.va_end(i8* %va12)
16         ret i32 undef
17 }
18
19 declare void @llvm.va_start(i8*) nounwind
20
21 declare void @bar(%struct.__va_list_tag*)
22
23 declare void @llvm.va_end(i8*) nounwind
24
25 define float @t2(float %a, float %b) nounwind readnone {
26 entry:
27         %0 = fadd float %a, %b          ; <float> [#uses=1]
28         ret float %0
29 }