fix yet more regressions
authorAndrew Lenharth <andrewl@lenharth.org>
Fri, 11 Nov 2005 23:08:46 +0000 (23:08 +0000)
committerAndrew Lenharth <andrewl@lenharth.org>
Fri, 11 Nov 2005 23:08:46 +0000 (23:08 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24308 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Alpha/AlphaISelPattern.cpp

index ec3479d15f5eedcba26263ecfef1498c15e8e5b4..1127f8b9e4962832920444c9233a006b5f974a06 100644 (file)
@@ -1530,7 +1530,7 @@ unsigned AlphaISel::SelectExpr(SDOperand N) {
             N.getOperand(0).getValueType() == MVT::f64 &&
             "only f64 to f32 conversion supported here");
     Tmp1 = SelectExpr(N.getOperand(0));
-    BuildMI(BB, Alpha::CVTTS, 1, Result).addReg(Alpha::F31).addReg(Tmp1);
+    BuildMI(BB, Alpha::CVTTS, 1, Result).addReg(Tmp1);
     return Result;
 
   case ISD::FP_EXTEND: