forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add suport for unpredicatble cases of the cmp, tst, teq and cmnz ARM …
…instructions in the disassembler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154999 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
1 parent
4bb87cb
commit 9e71231
Showing
2 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# RUN: llvm-mc --disassemble %s -triple=armv7-linux-gnueabi |& FileCheck %s | ||
|
||
# CHECK: potentially undefined | ||
# CHECK: 0x01 0x10 0x50 0x03 | ||
0x01 0x10 0x50 0x03 | ||
|
||
# CHECK: potentially undefined | ||
# CHECK: 0x82 0x10 0x50 0x01 | ||
0x82 0x10 0x50 0x01 | ||
|
||
# CHECK: potentially undefined | ||
# CHECK: 0x02 0x10 0x50 0x01 | ||
0x02 0x10 0x50 0x01 | ||
|
||
# CHECK: potentially undefined | ||
# CHECK: 0x1f 0x01 0x52 0x01 | ||
0x1f 0x01 0x52 0x01 | ||
|
||
# CHECK: potentially undefined | ||
# CHECK: 0x10 0x11 0x52 0x01 | ||
0x10 0x11 0x52 0x01 | ||
|
||
# CHECK: potentially undefined | ||
# CHECK: 0x10 0x0f 0x51 0x01 | ||
0x10 0x0f 0x51 0x01 | ||
|
||
# CHECK: potentially undefined | ||
# CHECK: 0x10 0x01 0x5f 0x01 | ||
0x10 0x01 0x5f 0x01 | ||
|