diff options
author | Toma Tabacu <toma.tabacu@imgtec.com> | 2014-09-16 10:19:03 +0000 |
---|---|---|
committer | Toma Tabacu <toma.tabacu@imgtec.com> | 2014-09-16 10:19:03 +0000 |
commit | 18227e6f203189fabe7c9adb518e179fc71a7d3d (patch) | |
tree | 8cc43056aec1bce8c9274a300cd7a9d6c4294169 /llvm/test/MC/Mips/mips4 | |
parent | 25cdd222b0afbb71dc3c1caef17ff4258c49422d (diff) | |
download | bcm5719-llvm-18227e6f203189fabe7c9adb518e179fc71a7d3d.tar.gz bcm5719-llvm-18227e6f203189fabe7c9adb518e179fc71a7d3d.zip |
[mips] Move 32-bit ADDiu instruction alias from Mips64InstrInfo.td to MipsInstrInfo.td.
Patch by Vasileios Kalintiris.
Differential Revision: http://reviews.llvm.org/D5244
llvm-svn: 217868
Diffstat (limited to 'llvm/test/MC/Mips/mips4')
-rw-r--r-- | llvm/test/MC/Mips/mips4/valid.s | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/MC/Mips/mips4/valid.s b/llvm/test/MC/Mips/mips4/valid.s index bb03686b80b..03031c8efa7 100644 --- a/llvm/test/MC/Mips/mips4/valid.s +++ b/llvm/test/MC/Mips/mips4/valid.s @@ -13,6 +13,7 @@ addi $13,$9,26322 addi $8,$8,~1 # CHECK: addi $8, $8, -2 # encoding: [0x21,0x08,0xff,0xfe] addu $9,$a0,$a2 + addu $9,10 # CHECK: addiu $9, $9, 10 # encoding: [0x25,0x29,0x00,0x0a] and $s7,$v0,$12 and $2,4 # CHECK: andi $2, $2, 4 # encoding: [0x30,0x42,0x00,0x04] bc1f $fcc0, 4 # CHECK: bc1f 4 # encoding: [0x45,0x00,0x00,0x01] |