diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2012-12-21 23:13:59 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2012-12-21 23:13:59 +0000 |
commit | 189225369446136f82e080dbdcab3a0fa63c71ac (patch) | |
tree | 945dd562299aba98065ab5d386472db8e4de2c60 /test/MC/Mips | |
parent | 6a8309e62afd88fbea4f1c39121de6dc4dc0d899 (diff) | |
download | external_llvm-189225369446136f82e080dbdcab3a0fa63c71ac.zip external_llvm-189225369446136f82e080dbdcab3a0fa63c71ac.tar.gz external_llvm-189225369446136f82e080dbdcab3a0fa63c71ac.tar.bz2 |
[mips] Fix encoding of BAL instruction. Also, fix assembler test case which
was not catching the error.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/Mips')
-rw-r--r-- | test/MC/Mips/mips-jump-instructions.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/MC/Mips/mips-jump-instructions.s b/test/MC/Mips/mips-jump-instructions.s index 998be41..58250f3 100644 --- a/test/MC/Mips/mips-jump-instructions.s +++ b/test/MC/Mips/mips-jump-instructions.s @@ -23,7 +23,7 @@ # CHECK: nop # encoding: [0x00,0x00,0x00,0x00] # CHECK: bne $9, $6, 1332 # encoding: [0x34,0x05,0x26,0x15] # CHECK: nop # encoding: [0x00,0x00,0x00,0x00] -# CHECK: bal 1332 # encoding: [0x34,0x05,0x00,0x04] +# CHECK: bal 1332 # encoding: [0x34,0x05,0x11,0x04] # CHECK: nop # encoding: [0x00,0x00,0x00,0x00] b 1332 nop |