diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-07-13 22:01:08 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-07-13 22:01:08 +0000 |
commit | 83ab070fc1fbb02ca77b0a37e6ae0eacf58001e1 (patch) | |
tree | 202b1ae7d985e5aa5abd796e9f540d790d1f6f65 /test/MC/ARM/diagnostics.s | |
parent | 466b022c9956b320a62eac7057eba632c6e512f9 (diff) | |
download | external_llvm-83ab070fc1fbb02ca77b0a37e6ae0eacf58001e1.zip external_llvm-83ab070fc1fbb02ca77b0a37e6ae0eacf58001e1.tar.gz external_llvm-83ab070fc1fbb02ca77b0a37e6ae0eacf58001e1.tar.bz2 |
Range checking for CDP[2] immediates.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ARM/diagnostics.s')
-rw-r--r-- | test/MC/ARM/diagnostics.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/MC/ARM/diagnostics.s b/test/MC/ARM/diagnostics.s index bf8f125..4069fea 100644 --- a/test/MC/ARM/diagnostics.s +++ b/test/MC/ARM/diagnostics.s @@ -46,3 +46,16 @@ bkpt #65536 @ CHECK-ERRORS: error: invalid operand for instruction + + @ Out of range 4 and 3 bit immediates on CDP[2] + + @ Out of range immediates for CDP/CDP2 + cdp p7, #2, c1, c1, c1, #8 + cdp p7, #1, c1, c1, c1, #8 + cdp2 p7, #2, c1, c1, c1, #8 + cdp2 p7, #1, c1, c1, c1, #8 + +@ CHECK-ERRORS: error: invalid operand for instruction +@ CHECK-ERRORS: error: invalid operand for instruction +@ CHECK-ERRORS: error: invalid operand for instruction +@ CHECK-ERRORS: error: invalid operand for instruction |