From 789ba735703c70c928b8753b80280eecb374050a Mon Sep 17 00:00:00 2001 From: Matheus Almeida Date: Thu, 12 Jun 2014 09:50:17 +0000 Subject: [PATCH] [mips] Move CHECK lines to the same line as the instruction it's testing for consistency with the other tests. No functional changes. llvm-svn: 210757 --- llvm/test/MC/Mips/mips32r6/invalid.s | 6 ++---- llvm/test/MC/Mips/mips64r2/invalid.s | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/llvm/test/MC/Mips/mips32r6/invalid.s b/llvm/test/MC/Mips/mips32r6/invalid.s index 36638e4..8202dbe 100644 --- a/llvm/test/MC/Mips/mips32r6/invalid.s +++ b/llvm/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/llvm/test/MC/Mips/mips64r2/invalid.s b/llvm/test/MC/Mips/mips64r2/invalid.s index db167c3..f53cfff 100644 --- a/llvm/test/MC/Mips/mips64r2/invalid.s +++ b/llvm/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 -- 2.7.4