]> granicus.if.org Git - clang/commitdiff
Merging r276350:
authorHans Wennborg <hans@hanshq.net>
Thu, 28 Jul 2016 15:18:14 +0000 (15:18 +0000)
committerHans Wennborg <hans@hanshq.net>
Thu, 28 Jul 2016 15:18:14 +0000 (15:18 +0000)
------------------------------------------------------------------------
r276350 | epilk | 2016-07-21 15:31:40 -0700 (Thu, 21 Jul 2016) | 3 lines

[CodeGen] Fix a crash when constant folding switch statement

Differential revision: https://reviews.llvm.org/D22542
------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_39@276985 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CGStmt.cpp
test/CodeGenCXX/switch-case-folding-2.cpp

index b5f9f786abfd1c56c33400b3839fdf13605fec5c..77879021f9af667f0323beae8c8a990ba98a3580 100644 (file)
@@ -1249,6 +1249,14 @@ void CodeGenFunction::EmitCaseStmt(const CaseStmt &S) {
 }
 
 void CodeGenFunction::EmitDefaultStmt(const DefaultStmt &S) {
+  // If there is no enclosing switch instance that we're aware of, then this
+  // default statement can be elided. This situation only happens when we've
+  // constant-folded the switch.
+  if (!SwitchInsn) {
+    EmitStmt(S.getSubStmt());
+    return;
+  }
+
   llvm::BasicBlock *DefaultBlock = SwitchInsn->getDefaultDest();
   assert(DefaultBlock->empty() &&
          "EmitDefaultStmt: Default block already defined?");
index b0bbf3282ac3edffd7b31b29fa8ebfa74d240123..558ca3c87d9ba5b108de551487fb4e5621a764d1 100644 (file)
@@ -18,4 +18,13 @@ int main(void) {
  return test(5);
 }
 
+void other_test() {
+  switch(0) {
+  case 0:
+    do {
+    default:;
+    } while(0);
+  }
+}
+
 // CHECK: call i32 (i8*, ...) @_Z6printfPKcz