From 86a589e38d7f5c048e3fe279db772f8ba7442fcb Mon Sep 17 00:00:00 2001 From: Simon Dardis Date: Sat, 23 Feb 2019 15:56:32 +0000 Subject: [PATCH] [MIPS] Fix a incorrect test. (NFC) This test is incorrect as it should be using the microMIPSR6 instruction to return, not the microMIPS version. llvm-svn: 354726 --- llvm/test/CodeGen/Mips/sll-micromips-r6-encoding.mir | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/CodeGen/Mips/sll-micromips-r6-encoding.mir b/llvm/test/CodeGen/Mips/sll-micromips-r6-encoding.mir index 69c9e77..d1bebbf 100644 --- a/llvm/test/CodeGen/Mips/sll-micromips-r6-encoding.mir +++ b/llvm/test/CodeGen/Mips/sll-micromips-r6-encoding.mir @@ -6,7 +6,7 @@ # CHECK-LABEL: a: # CHECK: nop # encoding: [0x00,0x00,0x00,0x00] -# CHECK: jrc $ra # encoding: [0x45,0xbf] +# CHECK: jrc16 $ra # encoding: [0x47,0xe3] --- name: a alignment: 2 @@ -41,6 +41,6 @@ constants: body: | bb.0.entry: $zero = SLL_MMR6 killed $zero, 0 - JRC16_MM undef $ra, implicit $v0 + JRC16_MMR6 undef $ra, implicit $v0 ... -- 2.7.4