diff options
author | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | 2013-11-13 13:15:03 +0000 |
---|---|---|
committer | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | 2013-11-13 13:15:03 +0000 |
commit | 1206f1968b0886ab41739aebe113dd4813f3fc46 (patch) | |
tree | 2d1f21037bc48b0216a53336db474bdce76103c2 /test/MC/Disassembler | |
parent | 4223b9601058369536caa1d15c9c19bc7c5a3706 (diff) | |
download | external_llvm-1206f1968b0886ab41739aebe113dd4813f3fc46.zip external_llvm-1206f1968b0886ab41739aebe113dd4813f3fc46.tar.gz external_llvm-1206f1968b0886ab41739aebe113dd4813f3fc46.tar.bz2 |
Support for microMIPS trap instruction with immediate operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194569 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/Disassembler')
-rw-r--r-- | test/MC/Disassembler/Mips/micromips.txt | 18 | ||||
-rw-r--r-- | test/MC/Disassembler/Mips/micromips_le.txt | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/test/MC/Disassembler/Mips/micromips.txt b/test/MC/Disassembler/Mips/micromips.txt index e005e67..b2d0cc0 100644 --- a/test/MC/Disassembler/Mips/micromips.txt +++ b/test/MC/Disassembler/Mips/micromips.txt @@ -267,3 +267,21 @@ # CHECK: tne $8, $9, 0 0x01 0x28 0x0c 0x3c + +# CHECK: teqi $9, 17767 +0x41,0xc9,0x45,0x67 + +# CHECK: tgei $9, 17767 +0x41 0x29 0x45 0x67 + +# CHECK: tgeiu $9, 17767 +0x41 0x69 0x45 0x67 + +# CHECK: tlti $9, 17767 +0x41 0x09 0x45 0x67 + +# CHECK: tltiu $9, 17767 +0x41 0x49 0x45 0x67 + +# CHECK: tnei $9, 17767 +0x41 0x89 0x45 0x67 diff --git a/test/MC/Disassembler/Mips/micromips_le.txt b/test/MC/Disassembler/Mips/micromips_le.txt index 0110cbd..5b2fe30 100644 --- a/test/MC/Disassembler/Mips/micromips_le.txt +++ b/test/MC/Disassembler/Mips/micromips_le.txt @@ -267,3 +267,21 @@ # CHECK: tne $8, $9, 0 0x28 0x01 0x3c 0x0c + +# CHECK: teqi $9, 17767 +0xc9 0x41 0x67 0x45 + +# CHECK: tgei $9, 17767 +0x29 0x41 0x67 0x45 + +# CHECK: tgeiu $9, 17767 +0x69 0x41 0x67 0x45 + +# CHECK: tlti $9, 17767 +0x09 0x41 0x67 0x45 + +# CHECK: tltiu $9, 17767 +0x49 0x41 0x67 0x45 + +# CHECK: tnei $9, 17767 +0x89 0x41 0x67 0x45 |