diff options
| author | Akira Hatanaka <ahatanaka@mips.com> | 2013-08-20 20:46:51 +0000 | 
|---|---|---|
| committer | Akira Hatanaka <ahatanaka@mips.com> | 2013-08-20 20:46:51 +0000 | 
| commit | a43b56d9afc1e132d9ff7be5bf53ebd7e23f3e0d (patch) | |
| tree | b5a79165b03a02694a3e163fc849d681b8e573a3 /llvm/test | |
| parent | 5874e6d384d2c3f4bc9b46cee1e1860aae0908ca (diff) | |
| download | bcm5719-llvm-a43b56d9afc1e132d9ff7be5bf53ebd7e23f3e0d.tar.gz bcm5719-llvm-a43b56d9afc1e132d9ff7be5bf53ebd7e23f3e0d.zip | |
[mips] Guard micromips instructions with predicate InMicroMips. Also, fix
assembler predicate HasStdEnd so that it is false when the target is micromips.
llvm-svn: 188824
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/MC/Mips/micromips-alu-instructions.s | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/llvm/test/MC/Mips/micromips-alu-instructions.s b/llvm/test/MC/Mips/micromips-alu-instructions.s index 3f6079cf673..426ab8baaf2 100644 --- a/llvm/test/MC/Mips/micromips-alu-instructions.s +++ b/llvm/test/MC/Mips/micromips-alu-instructions.s @@ -32,7 +32,7 @@  # CHECK-EL: xori   $9, $6, 17767  # encoding: [0x26,0x71,0x67,0x45]  # CHECK-EL: xori   $9, $6, 17767  # encoding: [0x26,0x71,0x67,0x45]  # CHECK-EL: nor    $9, $6, $7     # encoding: [0xe6,0x00,0xd0,0x4a] -# CHECK-EL: not    $7, $8         # encoding: [0x08,0x00,0xd0,0x3a] +# CHECK-EL: nor    $7, $8, $zero  # encoding: [0x08,0x00,0xd0,0x3a]  # CHECK-EL: mul    $9, $6, $7     # encoding: [0xe6,0x00,0x10,0x4a]  # CHECK-EL: mult   $9, $7         # encoding: [0xe9,0x00,0x3c,0x8b]  # CHECK-EL: multu  $9, $7         # encoding: [0xe9,0x00,0x3c,0x9b] @@ -64,7 +64,7 @@  # CHECK-EB:  xori  $9, $6, 17767  # encoding: [0x71,0x26,0x45,0x67]  # CHECK-EB:  xori  $9, $6, 17767  # encoding: [0x71,0x26,0x45,0x67]  # CHECK-EB:  nor $9, $6, $7       # encoding: [0x00,0xe6,0x4a,0xd0] -# CHECK-EB:  not $7, $8           # encoding: [0x00,0x08,0x3a,0xd0] +# CHECK-EB:  nor $7, $8, $zero    # encoding: [0x00,0x08,0x3a,0xd0]  # CHECK-EB:  mul $9, $6, $7       # encoding: [0x00,0xe6,0x4a,0x10]  # CHECK-EB:  mult  $9, $7         # encoding: [0x00,0xe9,0x8b,0x3c]  # CHECK-EB:  multu $9, $7         # encoding: [0x00,0xe9,0x9b,0x3c] | 

