forked from OSchip/llvm-project
The style guide prefers preincrement expressions :-)
llvm-svn: 181373
This commit is contained in:
parent
95652c7ccb
commit
8f1fb6f03d
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue