diff options
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 4df6feec9f..b580b01bc4 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -3155,7 +3155,7 @@ Sema::DeclPtrTy Sema::ActOnFinishFunctionBody(DeclPtrTy D, StmtArg BodyArg) { PopDeclContext(); // Verify and clean out per-function state. - //assert(&getLabelMap() == &FunctionLabelMap && "Didn't pop block right?"); + assert(&getLabelMap() == &FunctionLabelMap && "Didn't pop block right?"); bool HaveLabels = !FunctionLabelMap.empty(); // Check goto/label use. |