blob: 1b70bf719386a899a71894d3711caac42f4f4f0a [file] [log] [blame]
Evan Cheng424f8f32009-06-03 21:13:54 +00001; RUN: llvm-as < %s | llc -mtriple=x86_64-linux -relocation-model=static -aggressive-remat | grep xmm | count 2
Chris Lattner18c59872009-06-27 04:16:01 +00002; XFAIL: *
Dan Gohman6d69ba82008-07-25 00:02:30 +00003
4declare void @bar() nounwind
5
6@a = external constant float
7
8declare void @qux(float %f) nounwind
9
10define void @foo() nounwind {
11 %f = load float* @a
12 call void @bar()
13 call void @qux(float %f)
14 call void @qux(float %f)
15 ret void
16}