blob: 67dcb1871df4964089e1b955e2419343d5a92e63 [file] [log] [blame]
Chris Lattner7ff79c22008-01-16 05:56:59 +00001; This should not copy the result of foo into an xmm register.
Dan Gohman36a09472009-09-08 23:54:48 +00002; RUN: llc < %s -march=x86 -mcpu=yonah -mtriple=i686-apple-darwin9 | not grep xmm
Chris Lattner7ff79c22008-01-16 05:56:59 +00003; rdar://5689903
4
5declare double @foo()
6
7define double @carg({ double, double }* byval %z) nounwind {
8entry:
9 %tmp5 = tail call double @foo() nounwind ; <double> [#uses=1]
10 ret double %tmp5
11}
12