From 9f471750fa6f34120d4758d5d14f54f899e34a54 Mon Sep 17 00:00:00 2001 From: Zoran Jovanovic Date: Thu, 7 Nov 2013 14:35:24 +0000 Subject: Support for microMIPS trap instructions 1. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194205 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/Disassembler/Mips/micromips.txt | 18 ++++++++++++++++++ test/MC/Disassembler/Mips/micromips_le.txt | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) (limited to 'test/MC') diff --git a/test/MC/Disassembler/Mips/micromips.txt b/test/MC/Disassembler/Mips/micromips.txt index b3de89e..e005e67 100644 --- a/test/MC/Disassembler/Mips/micromips.txt +++ b/test/MC/Disassembler/Mips/micromips.txt @@ -249,3 +249,21 @@ # CHECK: bltz $6, 1332 0x40 0x06 0x02 0x9a + +# CHECK: teq $8, $9, 0 +0x01 0x28 0x00 0x3c + +# CHECK: tge $8, $9, 0 +0x01 0x28 0x02 0x3c + +# CHECK: tgeu $8, $9, 0 +0x01 0x28 0x04 0x3c + +# CHECK: tlt $8, $9, 0 +0x01 0x28 0x08 0x3c + +# CHECK: tltu $8, $9, 0 +0x01 0x28 0x0a 0x3c + +# CHECK: tne $8, $9, 0 +0x01 0x28 0x0c 0x3c diff --git a/test/MC/Disassembler/Mips/micromips_le.txt b/test/MC/Disassembler/Mips/micromips_le.txt index ec9679c..0110cbd 100644 --- a/test/MC/Disassembler/Mips/micromips_le.txt +++ b/test/MC/Disassembler/Mips/micromips_le.txt @@ -249,3 +249,21 @@ # CHECK: bltz $6, 1332 0x06 0x40 0x9a 0x02 + +# CHECK: teq $8, $9, 0 +0x28 0x01 0x3c 0x00 + +# CHECK: tge $8, $9, 0 +0x28 0x01 0x3c 0x02 + +# CHECK: tgeu $8, $9, 0 +0x28 0x01 0x3c 0x04 + +# CHECK: tlt $8, $9, 0 +0x28 0x01 0x3c 0x08 + +# CHECK: tltu $8, $9, 0 +0x28 0x01 0x3c 0x0a + +# CHECK: tne $8, $9, 0 +0x28 0x01 0x3c 0x0c -- cgit v1.1