blob: 7fa8fed33c99f44f506ae0f5eaac3a6e198db7f1 [file] [log] [blame]
Evan Chengc7ce29b2009-02-13 22:36:38 +00001; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 -soft-float | not grep xmm
2; RUN: llvm-as < %s | llc -march=x86-64 -mattr=+sse2 -soft-float | not grep xmm
3
4 %struct.__va_list_tag = type { i32, i32, i8*, i8* }
5
6define i32 @t1(i32 %a, ...) nounwind {
7entry:
8 %va = alloca [1 x %struct.__va_list_tag], align 8 ; <[1 x %struct.__va_list_tag]*> [#uses=2]
9 %va12 = bitcast [1 x %struct.__va_list_tag]* %va to i8* ; <i8*> [#uses=2]
10 call void @llvm.va_start(i8* %va12)
11 %va3 = getelementptr [1 x %struct.__va_list_tag]* %va, i64 0, i64 0 ; <%struct.__va_list_tag*> [#uses=1]
12 call void @bar(%struct.__va_list_tag* %va3) nounwind
13 call void @llvm.va_end(i8* %va12)
14 ret i32 undef
15}
16
17declare void @llvm.va_start(i8*) nounwind
18
19declare void @bar(%struct.__va_list_tag*)
20
21declare void @llvm.va_end(i8*) nounwind
22
23define float @t2(float %a, float %b) nounwind readnone {
24entry:
25 %0 = add float %a, %b ; <float> [#uses=1]
26 ret float %0
27}