fix my containsBreak predicate.

llvm-svn: 126600
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp
index 999788f..4ab3277 100644
--- a/clang/lib/CodeGen/CodeGenFunction.cpp
+++ b/clang/lib/CodeGen/CodeGenFunction.cpp
@@ -421,6 +421,9 @@
   // include it and anything inside of it.
   if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S) ||
       isa<ForStmt>(S))
+    return false;
+  
+  if (isa<BreakStmt>(S))
     return true;
   
   // Scan subexpressions for verboten breaks.