summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatheus Almeida <matheus.almeida@imgtec.com>2014-06-12 09:50:17 +0000
committerMatheus Almeida <matheus.almeida@imgtec.com>2014-06-12 09:50:17 +0000
commite0bf9d21b0bb07ba61f5ba5cbbb91bcc8fbfba35 (patch)
treefbffaaf271f9c7e924d872c974f16d1d407f7426 /test
parent0b87955888131def2f8dbc2e63bb67fa3749f364 (diff)
downloadllvm-e0bf9d21b0bb07ba61f5ba5cbbb91bcc8fbfba35.tar.gz
llvm-e0bf9d21b0bb07ba61f5ba5cbbb91bcc8fbfba35.tar.bz2
llvm-e0bf9d21b0bb07ba61f5ba5cbbb91bcc8fbfba35.tar.xz
[mips] Move CHECK lines to the same line as the instruction it's testing
for consistency with the other tests. No functional changes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210757 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/MC/Mips/mips32r6/invalid.s6
-rw-r--r--test/MC/Mips/mips64r2/invalid.s6
2 files changed, 4 insertions, 8 deletions
diff --git a/test/MC/Mips/mips32r6/invalid.s b/test/MC/Mips/mips32r6/invalid.s
index 36638e481c..8202dbe595 100644
--- a/test/MC/Mips/mips32r6/invalid.s
+++ b/test/MC/Mips/mips32r6/invalid.s
@@ -6,7 +6,5 @@
.text
.set noreorder
- jalr.hb $31
-# ASM: :[[@LINE-1]]:9: error: source and destination must be different
- jalr.hb $31, $31
-# ASM: :[[@LINE-1]]:9: error: source and destination must be different
+ jalr.hb $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
+ jalr.hb $31, $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
diff --git a/test/MC/Mips/mips64r2/invalid.s b/test/MC/Mips/mips64r2/invalid.s
index db167c3f37..f53cfff404 100644
--- a/test/MC/Mips/mips64r2/invalid.s
+++ b/test/MC/Mips/mips64r2/invalid.s
@@ -6,7 +6,5 @@
.text
.set noreorder
- jalr.hb $31
-# ASM: :[[@LINE-1]]:9: error: source and destination must be different
- jalr.hb $31, $31
-# ASM: :[[@LINE-1]]:9: error: source and destination must be different
+ jalr.hb $31 # ASM: :[[@LINE]]:9: error: source and destination must be different
+ jalr.hb $31, $31 # ASM: :[[@LINE]]:9: error: source and destination must be different