blob: 3e813209d41032502397789a9cf241210e8b13a8 [file] [log] [blame]
Dan Gohman36a09472009-09-08 23:54:48 +00001; RUN: llc < %s -mtriple=x86_64-linux -relocation-model=static | grep xmm | count 2
Dan Gohman6d69ba82008-07-25 00:02:30 +00002
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}