r277490 - Update Clang Parser test error message to match new parser errors
Nirav Dave via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 2 10:58:14 PDT 2016
Author: niravd
Date: Tue Aug 2 12:58:14 2016
New Revision: 277490
URL: http://llvm.org/viewvc/llvm-project?rev=277490&view=rev
Log:
Update Clang Parser test error message to match new parser errors
Update clang tests in light of r277489.
Modified:
cfe/trunk/test/Parser/ms-inline-asm.c
Modified: cfe/trunk/test/Parser/ms-inline-asm.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Parser/ms-inline-asm.c?rev=277490&r1=277489&r2=277490&view=diff
==============================================================================
--- cfe/trunk/test/Parser/ms-inline-asm.c (original)
+++ cfe/trunk/test/Parser/ms-inline-asm.c Tue Aug 2 12:58:14 2016
@@ -54,7 +54,7 @@ void t12() {
__asm jmp label // expected-error {{use of undeclared label 'label'}}
}
void t13() {
- __asm m{o}v eax, ebx // expected-error {{expected identifier}} expected-error {{use of undeclared label '{o}v eax, ebx'}}
+ __asm m{o}v eax, ebx // expected-error {{unknown token in expression}}
}
int t_fail() { // expected-note {{to match this}}
More information about the cfe-commits
mailing list