summaryrefslogtreecommitdiffstats
path: root/test/MC/Mips/macro-li.s
diff options
context:
space:
mode:
authorSimon Dardis <simon.dardis@imgtec.com>2016-10-05 15:28:33 +0000
committerSimon Dardis <simon.dardis@imgtec.com>2016-10-05 15:28:33 +0000
commit20d3d702f5340740b6b10ca160ddca7454d79c02 (patch)
tree9f65074faa7608216b02811e1dedd47c9ce99a36 /test/MC/Mips/macro-li.s
parent8bebbdc0d06071818b58dd789e93cb2fdc67b5c6 (diff)
Revert "[mips] Add rsqrt, recip for MIPS"
This reverts commit r282485 which contain two patches instead of one. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283327 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/Mips/macro-li.s')
-rw-r--r--test/MC/Mips/macro-li.s8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/MC/Mips/macro-li.s b/test/MC/Mips/macro-li.s
index 6cdc11d70d25..88e013a854e2 100644
--- a/test/MC/Mips/macro-li.s
+++ b/test/MC/Mips/macro-li.s
@@ -65,11 +65,3 @@ li $5, 0xc0008000 # CHECK: lui $5, 49152 # encoding: [0x3c,0x05,0xc0,0x00
# CHECK: ori $5, $5, 32768 # encoding: [0x34,0xa5,0x80,0x00]
li $5, 0x80008000 # CHECK: lui $5, 32768 # encoding: [0x3c,0x05,0x80,0x00]
# CHECK: ori $5, $5, 32768 # encoding: [0x34,0xa5,0x80,0x00]
-li $4, ~0xffffffff # CHECK; addiu $4, $zero, 0 # encoding: [0x24,0x04,0x00,0x00]
-li $4, ~0x80000001 # CHECK: lui $4, 32767 # encoding: [0x3c,0x04,0x7f,0xff]
- # CHECK: ori $4, $4, 65534 # encoding: [0x34,0x84,0xff,0xfe]
-li $4, ~0x80000000 # CHECK: lui $4, 32767 # encoding: [0x3c,0x04,0x7f,0xff]
- # CHECK: ori $4, $4, 65535 # encoding: [0x34,0x84,0xff,0xff]
-li $4, ~0x7fffffff # CHECK: lui $4, 32768 # encoding: [0x3c,0x04,0x80,0x00]
-li $4, ~0x00000001 # CHECK: addiu $4, $zero, -2 # encoding: [0x24,0x04,0xff,0xfe]
-li $4, ~0x00000000 # CHECK: addiu $4, $zero, -1 # encoding: [0x24,0x04,0xff,0xff]