From bb11bbe29709ccbeee55e1e3ff7c08d4aee4f189 Mon Sep 17 00:00:00 2001 From: Toma Tabacu Date: Fri, 10 Apr 2015 10:46:59 +0000 Subject: [PATCH] [mips] [IAS] Make the mips-expansions-bad.s test more readable. NFC. Move the check lines below the code lines and change the indentation from 8 spaces to 2 spaces. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234584 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/MC/Mips/mips-expansions-bad.s | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/MC/Mips/mips-expansions-bad.s b/test/MC/Mips/mips-expansions-bad.s index 8d8516926f2..d9bac20e154 100644 --- a/test/MC/Mips/mips-expansions-bad.s +++ b/test/MC/Mips/mips-expansions-bad.s @@ -1,6 +1,8 @@ # RUN: not llvm-mc %s -arch=mips -mcpu=mips32r2 2>%t1 # RUN: FileCheck %s < %t1 - .text - li $5, 0x100000000 # CHECK: :[[@LINE]]:9: error: instruction requires a 64-bit architecture - dli $5, 1 # CHECK: :[[@LINE]]:9: error: instruction requires a 64-bit architecture + .text + li $5, 0x100000000 + # CHECK: :[[@LINE-1]]:3: error: instruction requires a 64-bit architecture + dli $5, 1 + # CHECK: :[[@LINE-1]]:3: error: instruction requires a 64-bit architecture -- 2.11.0