Commit 86a589e3 authored by Simon Dardis's avatar Simon Dardis
Browse files

[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
parent 73be0cb7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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

...