Due to asmparser improvements, this error message is now better

llvm-svn: 113177
This commit is contained in:
Chris Lattner 2010-09-06 22:09:27 +00:00
parent 628fbecf4f
commit 03483613c2
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}