diff options
author | Owen Anderson <resistor@mac.com> | 2011-08-29 20:42:00 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2011-08-29 20:42:00 +0000 |
commit | 1f267585104ee283872caef2a3f7b1cccb9ec042 (patch) | |
tree | 10e812b2d514ca483296633d98170f51ede4c41a /lib | |
parent | 6af6824eb48a4610cb5009599bc49276014023e9 (diff) | |
download | external_llvm-1f267585104ee283872caef2a3f7b1cccb9ec042.zip external_llvm-1f267585104ee283872caef2a3f7b1cccb9ec042.tar.gz external_llvm-1f267585104ee283872caef2a3f7b1cccb9ec042.tar.bz2 |
Specify an additional fixed bit in the PLD/PLDW/PLI register-register encoding.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138760 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 56a4d83..523f739 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -1507,6 +1507,7 @@ multiclass APreLoad<bits<1> read, bits<1> data, string opc> { let Inst{19-16} = shift{16-13}; // Rn let Inst{15-12} = 0b1111; let Inst{11-0} = shift{11-0}; + let Inst{4} = 0; } } |