[llvm-commits] CVS: llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp
Chris Lattner
lattner at cs.uiuc.edu
Wed Jan 15 14:33:01 PST 2003
Changes in directory llvm/lib/CodeGen/InstrSelection:
InstrSelectionSupport.cpp updated: 1.44 -> 1.45
---
Log message:
Fix bug in previous checkin
---
Diffs of the changes:
Index: llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp
diff -u llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp:1.44 llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp:1.45
--- llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp:1.44 Wed Jan 15 13:47:53 2003
+++ llvm/lib/CodeGen/InstrSelection/InstrSelectionSupport.cpp Wed Jan 15 14:32:15 2003
@@ -433,7 +433,8 @@
if (mop.getType() == MachineOperand::MO_VirtualRegister)
{
assert(mop.getVRegValue() != NULL);
- if (Constant *opConst = dyn_cast<Constant>(mop.getVRegValue())) {
+ opValue = mop.getVRegValue();
+ if (Constant *opConst = dyn_cast<Constant>(opValue)) {
opType = ChooseRegOrImmed(opConst, opCode, target,
(immedPos == (int)op), machineRegNum,
immedValue);
More information about the llvm-commits
mailing list