[MIPS] Fix a incorrect test. (NFC)

This test is incorrect as it should be using the microMIPSR6 instruction to
return, not the microMIPS version.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@354726 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/Mips/sll-micromips-r6-encoding.mir b/test/CodeGen/Mips/sll-micromips-r6-encoding.mir
index 69c9e77..d1bebbf 100644
--- a/test/CodeGen/Mips/sll-micromips-r6-encoding.mir
+++ b/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 @@
 body:             |
   bb.0.entry:
     $zero = SLL_MMR6 killed $zero, 0
-    JRC16_MM undef $ra, implicit $v0
+    JRC16_MMR6 undef $ra, implicit $v0
 
 ...