From c1ec2dbbd24bf0b8d1d2a8480591e89bd1c83e2f Mon Sep 17 00:00:00 2001 From: Tim Northover Date: Wed, 27 Mar 2013 13:50:57 +0000 Subject: [PATCH] Add another expected note. Two errors => two notes. llvm-svn: 178143 --- clang/test/Sema/asm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Sema/asm.c b/clang/test/Sema/asm.c index 50c28188aa2e..2f875a69e1f5 100644 --- a/clang/test/Sema/asm.c +++ b/clang/test/Sema/asm.c @@ -125,7 +125,7 @@ void test13(void) { } // -struct S; // expected-note {{forward declaration of 'struct S'}} +struct S; // expected-note {{forward declaration of 'struct S'}} expected-note {{forward declaration of 'struct S'}} void test14(struct S *s) { __asm("": : "a"(*s)); // expected-error {{dereference of pointer to incomplete type 'struct S'}} __asm("": "=a" (*s) :); // expected-error {{dereference of pointer to incomplete type 'struct S'}}