diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-03-29 19:49:38 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-03-29 19:49:38 +0000 |
commit | 9eda569a74377bdcf8ce6073682fb9a4bd8a82ca (patch) | |
tree | d5daf4a9a90d6bcecce8993d19ef872a66f32884 /lib/Target/ARM/ARMInstrInfo.td | |
parent | 4381dd1f21b90db256b42362f81ec96e045d46f6 (diff) | |
download | external_llvm-9eda569a74377bdcf8ce6073682fb9a4bd8a82ca.zip external_llvm-9eda569a74377bdcf8ce6073682fb9a4bd8a82ca.tar.gz external_llvm-9eda569a74377bdcf8ce6073682fb9a4bd8a82ca.tar.bz2 |
A8.6.188 STC, STC2
The STC_OPTION and STC2_OPTION instructions should have their coprocessor option enclosed in {}.
rdar://problem/9200661
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128478 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMInstrInfo.td')
-rw-r--r-- | lib/Target/ARM/ARMInstrInfo.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/ARM/ARMInstrInfo.td b/lib/Target/ARM/ARMInstrInfo.td index 2621b3e..c796003 100644 --- a/lib/Target/ARM/ARMInstrInfo.td +++ b/lib/Target/ARM/ARMInstrInfo.td @@ -3430,8 +3430,8 @@ multiclass LdStCop<bits<4> op31_28, bit load, string opc> { } def _OPTION : ACI<(outs), - (ins nohash_imm:$cop, nohash_imm:$CRd, GPR:$base, i32imm:$option), - opc, "\tp$cop, cr$CRd, [$base], $option"> { + (ins nohash_imm:$cop, nohash_imm:$CRd, GPR:$base, nohash_imm:$option), + opc, "\tp$cop, cr$CRd, [$base], \\{$option\\}"> { let Inst{31-28} = op31_28; let Inst{24} = 0; // P = 0 let Inst{23} = 1; // U = 1 @@ -3472,7 +3472,7 @@ multiclass LdStCop<bits<4> op31_28, bit load, string opc> { def L_OPTION : ACI<(outs), (ins nohash_imm:$cop, nohash_imm:$CRd, GPR:$base, nohash_imm:$option), - !strconcat(opc, "l"), "\tp$cop, cr$CRd, [$base], $option"> { + !strconcat(opc, "l"), "\tp$cop, cr$CRd, [$base], \\{$option\\}"> { let Inst{31-28} = op31_28; let Inst{24} = 0; // P = 0 let Inst{23} = 1; // U = 1 |