blob: eb12c312e9b9bca93f214744e02433b6ce537e70 [file] [log] [blame]
Dan Gohman6d69ba82008-07-25 00:02:30 +00001; RUN: llvm-as < %s | llc -march=x86-64 -relocation-model=static | grep xmm | count 2
2
3declare void @bar() nounwind
4
5@a = external constant float
6
7declare void @qux(float %f) nounwind
8
9define void @foo() nounwind {
10 %f = load float* @a
11 call void @bar()
12 call void @qux(float %f)
13 call void @qux(float %f)
14 ret void
15}