r341490 - [Sema] Don't warn about omitting unavailable enum constants in a switch
Erik Pilkington via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 5 12:13:27 PDT 2018
Author: epilk
Date: Wed Sep 5 12:13:27 2018
New Revision: 341490
URL: http://llvm.org/viewvc/llvm-project?rev=341490&view=rev
Log:
[Sema] Don't warn about omitting unavailable enum constants in a switch
rdar://42717026
Differential revision: https://reviews.llvm.org/D51649
Added:
cfe/trunk/test/Sema/switch-availability.c
Modified:
cfe/trunk/lib/Sema/SemaStmt.cpp
Modified: cfe/trunk/lib/Sema/SemaStmt.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaStmt.cpp?rev=341490&r1=341489&r2=341490&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaStmt.cpp (original)
+++ cfe/trunk/lib/Sema/SemaStmt.cpp Wed Sep 5 12:13:27 2018
@@ -1164,7 +1164,21 @@ Sema::ActOnFinishSwitchStmt(SourceLocati
SmallVector<DeclarationName,8> UnhandledNames;
- for (EI = EnumVals.begin(); EI != EIEnd; EI++){
+ for (EI = EnumVals.begin(); EI != EIEnd; EI++) {
+ // Don't warn about omitted unavailable EnumConstantDecls.
+ switch (EI->second->getAvailability()) {
+ case AR_Deprecated:
+ // Omitting a deprecated constant is ok; it should never materialize.
+ case AR_Unavailable:
+ continue;
+
+ case AR_NotYetIntroduced:
+ // Partially available enum constants should be present. Note that we
+ // suppress -Wunguarded-availability diagnostics for such uses.
+ case AR_Available:
+ break;
+ }
+
// Drop unneeded case values
while (CI != CaseVals.end() && CI->first < EI->first)
CI++;
Added: cfe/trunk/test/Sema/switch-availability.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/switch-availability.c?rev=341490&view=auto
==============================================================================
--- cfe/trunk/test/Sema/switch-availability.c (added)
+++ cfe/trunk/test/Sema/switch-availability.c Wed Sep 5 12:13:27 2018
@@ -0,0 +1,27 @@
+// RUN: %clang_cc1 -verify -Wswitch -triple x86_64-apple-macosx10.12 %s
+
+enum SwitchOne {
+ Unavail __attribute__((availability(macos, unavailable))),
+};
+
+void testSwitchOne(enum SwitchOne so) {
+ switch (so) {} // no warning
+}
+
+enum SwitchTwo {
+ Ed __attribute__((availability(macos, deprecated=10.12))),
+ Vim __attribute__((availability(macos, deprecated=10.13))),
+ Emacs,
+};
+
+void testSwitchTwo(enum SwitchTwo st) {
+ switch (st) {} // expected-warning{{enumeration values 'Vim' and 'Emacs' not handled in switch}}
+}
+
+enum SwitchThree {
+ New __attribute__((availability(macos, introduced=1000))),
+};
+
+void testSwitchThree(enum SwitchThree st) {
+ switch (st) {} // expected-warning{{enumeration value 'New' not handled in switch}}
+}
More information about the cfe-commits
mailing list