]> granicus.if.org Git - clang/commitdiff
Fix crash in CFGBuilder involving implicit destructor calls and gotos jumping after...
authorTed Kremenek <kremenek@apple.com>
Fri, 12 Aug 2011 04:09:00 +0000 (04:09 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 12 Aug 2011 04:09:00 +0000 (04:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137426 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CFG.cpp
test/SemaCXX/cfg.cpp [new file with mode: 0644]

index 1edb328d013e76aad1953a88f44532e45173d09a..ea126a968949a97e64c7cf39efae7a412a539e07 100644 (file)
@@ -191,8 +191,8 @@ int LocalScope::const_iterator::distance(LocalScope::const_iterator L) {
   int D = 0;
   const_iterator F = *this;
   while (F.Scope != L.Scope) {
-    assert (F != const_iterator()
-        && "L iterator is not reachable from F iterator.");
+    if (F == const_iterator())
+      return D;
     D += F.VarIter;
     F = F.Scope->Prev;
   }
@@ -816,10 +816,12 @@ void CFGBuilder::addLocalScopeAndDtors(Stmt* S) {
 /// performed in place specified with iterator.
 void CFGBuilder::insertAutomaticObjDtors(CFGBlock* Blk, CFGBlock::iterator I,
     LocalScope::const_iterator B, LocalScope::const_iterator E, Stmt* S) {
-  BumpVectorContext& C = cfg->getBumpVectorContext();
-  I = Blk->beginAutomaticObjDtorsInsert(I, B.distance(E), C);
-  while (B != E)
-    I = Blk->insertAutomaticObjDtor(I, *B++, S);
+  if (int Cnt = B.distance(E)) {
+    BumpVectorContext& C = cfg->getBumpVectorContext();
+    I = Blk->beginAutomaticObjDtorsInsert(I, Cnt, C);
+    while (B != E)
+      I = Blk->insertAutomaticObjDtor(I, *B++, S);
+  }
 }
 
 /// appendAutomaticObjDtors - Append destructor CFGElements for variables with
diff --git a/test/SemaCXX/cfg.cpp b/test/SemaCXX/cfg.cpp
new file mode 100644 (file)
index 0000000..93cf90b
--- /dev/null
@@ -0,0 +1,23 @@
+// RUN: %clang_cc1 -fsyntax-only -Wuninitialized -fsyntax-only %s
+
+// Test that the CFG builder handles destructors and gotos jumping between
+// scope boundaries.  Previously this crashed (PR 10620).
+struct S_10620 {
+  S_10620(const S_10620 &x);
+  ~S_10620();
+};
+void PR10620(int x, const S_10620& s) {
+  if (x) {
+    goto done;
+  }
+  const S_10620 s2(s);
+done:
+  ;
+}
+void PR10620_2(int x, const S_10620& s) {
+  if (x)
+    goto done;
+  const S_10620 s2(s);
+done:
+  ;
+}
\ No newline at end of file