blob: c90ef0aa30d2d1d367b60b03aac815ea713734d0 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc | not grep {, f1}
2
3target endian = big
4target pointersize = 32
5target triple = "powerpc-apple-darwin8.2.0"
6
7; Dead argument should reserve an FP register.
8double %bar(double %DEAD, double %X, double %Y) {
9 %tmp.2 = add double %X, %Y
10 ret double %tmp.2
11}
12