diff options
author | Jozef Kolek <jozef.kolek@imgtec.com> | 2014-11-24 16:14:10 +0000 |
---|---|---|
committer | Jozef Kolek <jozef.kolek@imgtec.com> | 2014-11-24 16:14:10 +0000 |
commit | 11bdb8bf336aec60b87b6288a09cf90a232dadbc (patch) | |
tree | 5655ff6af61fda98fcde70419a908d767424320a /llvm/test/MC/Mips/micromips-16-bit-instructions.s | |
parent | 484ee9b4043e985589bb5d194b1b56351fdc9e25 (diff) | |
download | bcm5719-llvm-11bdb8bf336aec60b87b6288a09cf90a232dadbc.tar.gz bcm5719-llvm-11bdb8bf336aec60b87b6288a09cf90a232dadbc.zip |
[mips][microMIPS] Fix JRADDIUSP instruction
Fix JRADDIUSP instruction, remove delay slot flag because this instruction
doesn't have delay slot.
Differential Revision: http://reviews.llvm.org/D6365
llvm-svn: 222658
Diffstat (limited to 'llvm/test/MC/Mips/micromips-16-bit-instructions.s')
-rw-r--r-- | llvm/test/MC/Mips/micromips-16-bit-instructions.s | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/test/MC/Mips/micromips-16-bit-instructions.s b/llvm/test/MC/Mips/micromips-16-bit-instructions.s index 176584fb2dd..f8095b1b03b 100644 --- a/llvm/test/MC/Mips/micromips-16-bit-instructions.s +++ b/llvm/test/MC/Mips/micromips-16-bit-instructions.s @@ -38,8 +38,7 @@ # CHECK-EL: jrc $9 # encoding: [0xa9,0x45] # CHECK-NEXT: jalr $9 # encoding: [0xc9,0x45] # CHECK-EL: jraddiusp 20 # encoding: [0x05,0x47] -# CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00] -# CHECK-EL: jalrs16 $9 # encoding: [0xe9,0x45] +# CHECK-NEXT: jalrs16 $9 # encoding: [0xe9,0x45] # CHECK-EL: move $zero, $zero # encoding: [0x00,0x0c] # CHECK-EL: jr16 $9 # encoding: [0x89,0x45] # CHECK-EL: nop # encoding: [0x00,0x00,0x00,0x00] @@ -75,8 +74,7 @@ # CHECK-EB: jrc $9 # encoding: [0x45,0xa9] # CHECK-NEXT: jalr $9 # encoding: [0x45,0xc9] # CHECK-EB: jraddiusp 20 # encoding: [0x47,0x05] -# CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00] -# CHECK-EB: jalrs16 $9 # encoding: [0x45,0xe9] +# CHECK-NEXT: jalrs16 $9 # encoding: [0x45,0xe9] # CHECK-EB: move $zero, $zero # encoding: [0x0c,0x00] # CHECK-EB: jr16 $9 # encoding: [0x45,0x89] # CHECK-EB: nop # encoding: [0x00,0x00,0x00,0x00] |