commit | 03483613c2986a61181d08c8719d16790a9ad0b3 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Sep 06 22:09:27 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Sep 06 22:09:27 2010 +0000 |
tree | e501dbba3c3d058c9d74a3fc2385ab17b9815e4b | |
parent | 628fbecf4fbec551a0a7f2360c8bae0ac1881e72 [diff] [blame] |
Due to asmparser improvements, this error message is now better llvm-svn: 113177
diff --git a/clang/test/CodeGen/asm-errors.c b/clang/test/CodeGen/asm-errors.c index aea5cb2..c5b36c7 100644 --- a/clang/test/CodeGen/asm-errors.c +++ b/clang/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; }