forked from OSchip/llvm-project
Fix inline asm diagnostics test.
Don't depend on X86 everywhere. Fix the original problem with a reg-exp for the column number. llvm-svn: 294468
This commit is contained in:
parent
385c2a3134
commit
7e101936b6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue