diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2009-12-11 19:37:26 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2009-12-11 19:37:26 +0000 |
| commit | 098bd1bbeab74684f55c01b28eacaa7d0ff02cf7 (patch) | |
| tree | 808d54fc7cc2ed77b79bb2bb4a5700ae696aec23 | |
| parent | 3ef59520175b85ec40a214a059392db609bba567 (diff) | |
| download | bcm5719-llvm-098bd1bbeab74684f55c01b28eacaa7d0ff02cf7.tar.gz bcm5719-llvm-098bd1bbeab74684f55c01b28eacaa7d0ff02cf7.zip | |
Store Register Exclusive should leave the source register Inst{3-0} unspecified.
llvm-svn: 91143
| -rw-r--r-- | llvm/lib/Target/ARM/ARMInstrFormats.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrFormats.td b/llvm/lib/Target/ARM/ARMInstrFormats.td index c6c96a86ac1..9ce93d196a2 100644 --- a/llvm/lib/Target/ARM/ARMInstrFormats.td +++ b/llvm/lib/Target/ARM/ARMInstrFormats.td @@ -285,7 +285,7 @@ class AIstrex<bits<2> opcod, dag oops, dag iops, InstrItinClass itin, let Inst{27-23} = 0b00011; let Inst{22-21} = opcod; let Inst{20} = 0; - let Inst{11-0} = 0b111110011111; + let Inst{11-4} = 0b11111001; } // addrmode1 instructions |

