diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-20 23:18:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-20 23:18:58 +0000 |
commit | 52a956da5242544260b8063d9b1d5a35a6308a66 (patch) | |
tree | 77139083c6fc2378b1f63308159c17032a0b8df5 /llvm/lib/Target/PowerPC/PPCInstrInfo.cpp | |
parent | 5705d4d519862795a8261bf38367c6b2a1930ac5 (diff) | |
download | bcm5719-llvm-52a956da5242544260b8063d9b1d5a35a6308a66.tar.gz bcm5719-llvm-52a956da5242544260b8063d9b1d5a35a6308a66.zip |
Rename OR4 -> OR. Move some PPC64-specific stuff to the 64-bit file
llvm-svn: 28889
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp b/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp index 9390442b4d2..a2ba4fed3c7 100644 --- a/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp +++ b/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp @@ -35,7 +35,7 @@ bool PPCInstrInfo::isMoveInstr(const MachineInstr& MI, unsigned& sourceReg, unsigned& destReg) const { MachineOpCode oc = MI.getOpcode(); - if (oc == PPC::OR4 || oc == PPC::OR8 || oc == PPC::VOR || + if (oc == PPC::OR || oc == PPC::OR8 || oc == PPC::VOR || oc == PPC::OR4To8 || oc == PPC::OR8To4) { // or r1, r2, r2 assert(MI.getNumOperands() == 3 && MI.getOperand(0).isRegister() && |