diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-07-13 23:33:10 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-07-13 23:33:10 +0000 |
commit | 199b683a6ef47caa7312aeb3ee32055d3056be8b (patch) | |
tree | 2ade14581a094b0b3ea155a804118002deb5909b /llvm | |
parent | 651b230ca04622b64e83eb5f3eee8c9587f1f057 (diff) | |
download | bcm5719-llvm-199b683a6ef47caa7312aeb3ee32055d3056be8b.tar.gz bcm5719-llvm-199b683a6ef47caa7312aeb3ee32055d3056be8b.zip |
Update comments. These are for assembler, too.
llvm-svn: 135107
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrInfo.td | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.td b/llvm/lib/Target/ARM/ARMInstrInfo.td index 452f9081e72..29ab4eaef02 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.td +++ b/llvm/lib/Target/ARM/ARMInstrInfo.td @@ -3305,15 +3305,14 @@ def DMB : AInoP<(outs), (ins memb_opt:$opt), MiscFrm, NoItinerary, } def DSB : AInoP<(outs), (ins memb_opt:$opt), MiscFrm, NoItinerary, - "dsb", "\t$opt", - [/* For disassembly only; pattern left blank */]>, + "dsb", "\t$opt", []>, Requires<[IsARM, HasDB]> { bits<4> opt; let Inst{31-4} = 0xf57ff04; let Inst{3-0} = opt; } -// ISB has only full system option -- for disassembly only +// ISB has only full system option def ISB : AInoP<(outs), (ins), MiscFrm, NoItinerary, "isb", "", []>, Requires<[IsARM, HasDB]> { let Inst{31-4} = 0xf57ff06; |