Commit 8f1fb6f0 authored by Adrian Prantl's avatar Adrian Prantl
Browse files

The style guide prefers preincrement expressions :-)

llvm-svn: 181373
parent 95652c7c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -841,9 +841,9 @@ void CodeGenFunction::EmitReturnStmt(const ReturnStmt &S) {
    }
  }

  NumReturnExprs += 1;
  ++NumReturnExprs;
  if (RV == 0 || RV->isEvaluatable(getContext()))
    NumSimpleReturnExprs += 1;
    ++NumSimpleReturnExprs;

  cleanupScope.ForceCleanup();
  EmitBranchThroughCleanup(ReturnBlock);