[llvm-commits] CVS: llvm/lib/Target/Sparc/SparcInstrInfo.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 19 16:37:49 PDT 2003
Changes in directory llvm/lib/Target/Sparc:
SparcInstrInfo.cpp updated: 1.52 -> 1.53
---
Log message:
Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruction::PHI" to be more consistent with the other instructions.
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/Target/Sparc/SparcInstrInfo.cpp
diff -u llvm/lib/Target/Sparc/SparcInstrInfo.cpp:1.52 llvm/lib/Target/Sparc/SparcInstrInfo.cpp:1.53
--- llvm/lib/Target/Sparc/SparcInstrInfo.cpp:1.52 Fri Oct 10 14:12:20 2003
+++ llvm/lib/Target/Sparc/SparcInstrInfo.cpp Sun Oct 19 16:34:27 2003
@@ -365,7 +365,7 @@
case Instruction::Malloc:
case Instruction::Alloca:
case Instruction::GetElementPtr:
- case Instruction::PHINode:
+ case Instruction::PHI:
case Instruction::Cast:
case Instruction::Call: modelOpCode = V9::ADDi; break;
More information about the llvm-commits
mailing list