diff options
author | Owen Anderson <resistor@mac.com> | 2011-10-28 17:29:39 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-10-28 17:29:39 +0000 |
commit | 7ccee5610a7100ddffe05f5eda1950f7d2cf66a6 (patch) | |
tree | 9db91504a9955fcda74a212d1753dce8eb8f5dbe | |
parent | 5d0492cfc4521ccb13b4961227b279991a17c393 (diff) |
Specify fixed bits on CPS instructions to enable roundtripping.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143202 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index b9cbc83f21..93739722cc 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -1640,7 +1640,7 @@ class CPS<dag iops, string asm_ops> let Inst{27-20} = 0b00010000; let Inst{19-18} = imod; let Inst{17} = M; // Enabled if mode is set; - let Inst{16} = 0; + let Inst{16-9} = 0b00000000; let Inst{8-6} = iflags; let Inst{5} = 0; let Inst{4-0} = mode; |