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_le.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_le.txt')
-rw-r--r-- | test/MC/Disassembler/Mips/micromips_le.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/MC/Disassembler/Mips/micromips_le.txt b/test/MC/Disassembler/Mips/micromips_le.txt index bcefeb4..fb183cd 100644 --- a/test/MC/Disassembler/Mips/micromips_le.txt +++ b/test/MC/Disassembler/Mips/micromips_le.txt @@ -147,3 +147,15 @@ # CHECK: swr $4, 16($5) 0x85 0x60 0x10 0x90 + +# CHECK: movz $9, $6, $7 +0xe6 0x00 0x58 0x48 + +# CHECK: movn $9, $6, $7 +0xe6 0x00 0x18 0x48 + +# CHECK: movt $9, $6, $fcc0 +0x26 0x55 0x7b 0x09 + +# CHECK: movf $9, $6, $fcc0 +0x26 0x55 0x7b 0x01 |