diff options
Diffstat (limited to 'test/Parser')
-rw-r--r-- | test/Parser/MicrosoftExtensions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Parser/MicrosoftExtensions.c b/test/Parser/MicrosoftExtensions.c index 5e1139338b..f61f7b45f1 100644 --- a/test/Parser/MicrosoftExtensions.c +++ b/test/Parser/MicrosoftExtensions.c @@ -71,8 +71,8 @@ char x = FOO(a); typedef enum E { e1 }; -enum __declspec(deprecated) E2 { i, j, k }; // expected-note {{declared here}} -__declspec(deprecated) enum E3 { a, b, c } e; // expected-note {{declared here}} +enum __declspec(deprecated) E2 { i, j, k }; // expected-note {{'E2' has been explicitly marked deprecated here}} +__declspec(deprecated) enum E3 { a, b, c } e; // expected-note {{'e' has been explicitly marked deprecated here}} void deprecated_enum_test(void) { @@ -111,7 +111,7 @@ struct __declspec(unknown(12) deprecated) S6 {}; /* expected-warning {{unknown _ struct S7 { int foo() { return 12; } - __declspec(property(get=foo) deprecated) int t; // expected-note {{declared here}} + __declspec(property(get=foo) deprecated) int t; // expected-note {{'t' has been explicitly marked deprecated here}} }; /* Technically, this is legal (though it does nothing) */ |