diff options
author | Vladimir Medic <Vladimir.Medic@imgtec.com> | 2013-09-06 12:41:17 +0000 |
---|---|---|
committer | Vladimir Medic <Vladimir.Medic@imgtec.com> | 2013-09-06 12:41:17 +0000 |
commit | bf7f7b5e0eae40bb47a410c90f9f0885c0f38b2c (patch) | |
tree | 938d1c39bd480cfe3c9052bd147c86949da7d512 /test/MC/Disassembler/Mips/micromips.txt | |
parent | a5eeb9da054bd76b38e18bedb9015bbaf20605e0 (diff) | |
download | external_llvm-bf7f7b5e0eae40bb47a410c90f9f0885c0f38b2c.zip external_llvm-bf7f7b5e0eae40bb47a410c90f9f0885c0f38b2c.tar.gz external_llvm-bf7f7b5e0eae40bb47a410c90f9f0885c0f38b2c.tar.bz2 |
This patch adds support for microMIPS Move Conditional instructions. Test cases are included in patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190148 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/Disassembler/Mips/micromips.txt')
-rw-r--r-- | test/MC/Disassembler/Mips/micromips.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/MC/Disassembler/Mips/micromips.txt b/test/MC/Disassembler/Mips/micromips.txt index 0b0c7a0..683c7a0 100644 --- a/test/MC/Disassembler/Mips/micromips.txt +++ b/test/MC/Disassembler/Mips/micromips.txt @@ -147,3 +147,15 @@ # CHECK: swr $4, 16($5) 0x60 0x85 0x90 0x10 + +# CHECK: movz $9, $6, $7 +0x00 0xe6 0x48 0x58 + +# CHECK: movn $9, $6, $7 +0x00 0xe6 0x48 0x18 + +# CHECK: movt $9, $6, $fcc0 +0x55 0x26 0x09 0x7b + +# CHECK: movf $9, $6, $fcc0 +0x55 0x26 0x01 0x7b |