Implement break and continue.  Patch by Anders Carlsson!

llvm-svn: 39927
diff --git a/clang/CodeGen/CodeGenFunction.cpp b/clang/CodeGen/CodeGenFunction.cpp
index 0cdda6c..8cea3e7 100644
--- a/clang/CodeGen/CodeGenFunction.cpp
+++ b/clang/CodeGen/CodeGenFunction.cpp
@@ -94,6 +94,9 @@
   else
     Builder.CreateRet(llvm::UndefValue::get(CurFn->getReturnType()));
   
+  assert(BreakContinueStack.empty() &&
+         "mismatched push/pop in break/continue stack!");
+  
   // Verify that the function is well formed.
   assert(!verifyFunction(*CurFn));
 }