diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-06 22:09:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-06 22:09:27 +0000 |
commit | fdc9025bb7863434ba1775f2b8c4b981eec38f98 (patch) | |
tree | 6c720d14cc27dbd83c3465d06adc0a67c2182912 /test/CodeGen/asm-errors.c | |
parent | f84cde1cbc6a6e6c29f20b164af38dffab60366a (diff) |
Due to asmparser improvements, this error message is now better
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113177 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/asm-errors.c')
-rw-r--r-- | test/CodeGen/asm-errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/asm-errors.c b/test/CodeGen/asm-errors.c index aea5cb247f..c5b36c7fed 100644 --- a/test/CodeGen/asm-errors.c +++ b/test/CodeGen/asm-errors.c @@ -2,7 +2,7 @@ // RUN: FileCheck %s < %t int test1(int X) { -// CHECK: error: unrecognized instruction +// CHECK: error: invalid instruction mnemonic 'abc' __asm__ ("abc incl %0" : "+r" (X)); return X; } |