diff options
-rw-r--r-- | test/Sema/scope-check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Sema/scope-check.c b/test/Sema/scope-check.c index 28e2d0ead5..f3881ed086 100644 --- a/test/Sema/scope-check.c +++ b/test/Sema/scope-check.c @@ -19,7 +19,7 @@ void test3clean(int*); int test3() { goto L; // expected-error{{illegal goto into protected scope}} -int a __attribute((cleanup(test3clean))); // expected-note {{jump bypasses initialization of declaration with __attribute__((cleanup))}} +int a __attribute((cleanup(test3clean))); // expected-note {{jump bypasses initialization of variable with __attribute__((cleanup))}} L: return a; } |