Home | History | Annotate | Download | only in PowerPC
      1 ; RUN: llc < %s | not grep ", f1"
      2 
      3 target datalayout = "E-p:32:32"
      4 target triple = "powerpc-apple-darwin8.2.0"
      5 
      6 ; Dead argument should reserve an FP register.
      7 define double @bar(double %DEAD, double %X, double %Y) {
      8         %tmp.2 = fadd double %X, %Y              ; <double> [#uses=1]
      9         ret double %tmp.2
     10 }
     11