]> granicus.if.org Git - llvm/commitdiff
Fix inline asm diagnostics test.
authorSanne Wouda <sanne.wouda@arm.com>
Wed, 8 Feb 2017 16:14:01 +0000 (16:14 +0000)
committerSanne Wouda <sanne.wouda@arm.com>
Wed, 8 Feb 2017 16:14:01 +0000 (16:14 +0000)
Don't depend on X86 everywhere. Fix the original problem with a reg-exp for the
column number.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294468 91177308-0d34-0410-b5e6-96231b3b80d8

test/Assembler/inline-asm-diags.ll

index d5d70356f7031ac29fb4efa0b75202dca8aba22d..d9fbb785098e9759ac593e01188a32107a1e204b 100644 (file)
@@ -1,9 +1,9 @@
-; RUN: not llc -march=x86 -filetype=obj < %s 2>&1 -o /dev/null | FileCheck %s
+; RUN: not llc -filetype=obj < %s 2>&1 -o /dev/null | FileCheck %s
 
 module asm ".word 0x10"
 module asm ".word -bar"
 
-; CHECK: <inline asm>:2:7: error: expected relocatable expression
+; CHECK: <inline asm>:2:{{[0-9]+}}: error: expected relocatable expression
 
 module asm ".word -foo"
-; CHECK: <inline asm>:3:7: error: expected relocatable expression
+; CHECK: <inline asm>:3:{{[0-9]+}}: error: expected relocatable expression