[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelPattern.cpp

Andrew Lenharth alenhar2 at cs.uiuc.edu
Fri Nov 11 11:52:45 PST 2005



Changes in directory llvm/lib/Target/Alpha:

AlphaISelPattern.cpp updated: 1.180 -> 1.181
---
Log message:

Fix a bunch more alpha regressions

---
Diffs of the changes:  (+1 -1)

 AlphaISelPattern.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/Target/Alpha/AlphaISelPattern.cpp
diff -u llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.180 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.181
--- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.180	Fri Nov 11 10:46:18 2005
+++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp	Fri Nov 11 13:52:25 2005
@@ -1533,7 +1533,7 @@
             N.getOperand(0).getValueType() == MVT::f32 &&
             "only f32 to f64 conversion supported here");
     Tmp1 = SelectExpr(N.getOperand(0));
-    BuildMI(BB, Alpha::CVTST, 1, Result).addReg(Alpha::F31).addReg(Tmp1);
+    BuildMI(BB, Alpha::CVTST, 1, Result).addReg(Tmp1);
     return Result;
 
   case ISD::ConstantFP:






More information about the llvm-commits mailing list