diff options
author | Owen Anderson <resistor@mac.com> | 2011-07-21 18:54:16 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-07-21 18:54:16 +0000 |
commit | 92a202213bb4c20301abf6ab64e46df3695e60bf (patch) | |
tree | ea32134f1f818aa4c39815bf26129c890bff42e9 /lib/Target/ARM/ARMExpandPseudoInsts.cpp | |
parent | a305fe75450348677a228f7d0f1cc53b2504b562 (diff) |
Split up the ARM so_reg ComplexPattern into so_reg_reg and so_reg_imm, allowing us to distinguish the encodings that use shifted registers from those that use shifted immediates. This is necessary to allow the fixed-length decoder to distinguish things like BICS vs LDRH.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135693 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMExpandPseudoInsts.cpp')
-rw-r--r-- | lib/Target/ARM/ARMExpandPseudoInsts.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMExpandPseudoInsts.cpp b/lib/Target/ARM/ARMExpandPseudoInsts.cpp index 708e88be6f..3c760f84d5 100644 --- a/lib/Target/ARM/ARMExpandPseudoInsts.cpp +++ b/lib/Target/ARM/ARMExpandPseudoInsts.cpp @@ -741,7 +741,8 @@ bool ARMExpandPseudo::ExpandMI(MachineBasicBlock &MBB, MI.eraseFromParent(); return true; } - case ARM::MOVCCs: { + case ARM::MOVCCsi: + case ARM::MOVCCsr: { BuildMI(MBB, MBBI, MI.getDebugLoc(), TII->get(ARM::MOVs), (MI.getOperand(1).getReg())) .addReg(MI.getOperand(2).getReg(), |