[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelPattern.cpp
Andrew Lenharth
alenhar2 at cs.uiuc.edu
Fri Nov 11 15:09:06 PST 2005
Changes in directory llvm/lib/Target/Alpha:
AlphaISelPattern.cpp updated: 1.182 -> 1.183
---
Log message:
fix yet more 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.182 llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.183
--- llvm/lib/Target/Alpha/AlphaISelPattern.cpp:1.182 Fri Nov 11 17:02:55 2005
+++ llvm/lib/Target/Alpha/AlphaISelPattern.cpp Fri Nov 11 17:08:46 2005
@@ -1530,7 +1530,7 @@
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:
More information about the llvm-commits
mailing list