Author: erichkeane Date: Tue Mar 21 15:14:46 2017 New Revision: 298433 URL: http://llvm.org/viewvc/llvm-project?rev=298433&view=rev Log: iFix Test deprecation behavior in C89 mode as a result of r298410
Modified: cfe/trunk/test/Sema/attr-deprecated.c Modified: cfe/trunk/test/Sema/attr-deprecated.c URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/attr-deprecated.c?rev=298433&r1=298432&r2=298433&view=diff ============================================================================== --- cfe/trunk/test/Sema/attr-deprecated.c (original) +++ cfe/trunk/test/Sema/attr-deprecated.c Tue Mar 21 15:14:46 2017 @@ -1,4 +1,6 @@ // RUN: %clang_cc1 %s -verify -fsyntax-only +// RUN: %clang_cc1 %s -std=c99 -verify -fsyntax-only +// RUN: %clang_cc1 %s -std=c89 -verify -fsyntax-only int f() __attribute__((deprecated)); // expected-note 2 {{'f' has been explicitly marked deprecated here}} void g() __attribute__((deprecated));// expected-note {{'g' has been explicitly marked deprecated here}} @@ -121,11 +123,12 @@ struct test22 { __attribute((deprecated)) foo_dep e, f; }; -typedef int test23_ty __attribute((deprecated)); // expected-note {{'test23_ty' has been explicitly marked deprecated here}} +typedef int test23_ty __attribute((deprecated)); // Redefining a typedef is a C11 feature. #if __STDC_VERSION__ <= 199901L // expected-note@-3 {{'test23_ty' has been explicitly marked deprecated here}} #else +// expected-note@-5 {{'test23_ty' has been explicitly marked deprecated here}} typedef int test23_ty; #endif test23_ty test23_v; // expected-warning {{'test23_ty' is deprecated}} _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits