]> granicus.if.org Git - clang/commitdiff
Due to asmparser improvements, this error message is now better
authorChris Lattner <sabre@nondot.org>
Mon, 6 Sep 2010 22:09:27 +0000 (22:09 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 6 Sep 2010 22:09:27 +0000 (22:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113177 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/asm-errors.c

index aea5cb247fa8b8d9d070a1b35e288abc6ccd0024..c5b36c7fed40c837da3bc16a5d23d1aa8d9c7723 100644 (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;
 }