commit | 99aa33745d9f0a255da9e56315993e68997e1e21 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Jan 07 02:48:55 2008 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Jan 07 02:48:55 2008 +0000 |
tree | 5f6826d4941017ac8ed24e65dfea73d2bdfb3714 | |
parent | 3d54fcd67cddee78cd124515cf521da8ab74abcf [diff] [blame] |
remove MachineOpCode typedef. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45679 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/ARMInstrInfo.cpp b/lib/Target/ARM/ARMInstrInfo.cpp index 3522637..b291d19 100644 --- a/lib/Target/ARM/ARMInstrInfo.cpp +++ b/lib/Target/ARM/ARMInstrInfo.cpp
@@ -52,7 +52,7 @@ /// bool ARMInstrInfo::isMoveInstr(const MachineInstr &MI, unsigned &SrcReg, unsigned &DstReg) const { - MachineOpCode oc = MI.getOpcode(); + unsigned oc = MI.getOpcode(); switch (oc) { default: return false;