Commit 3def08b4 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Re-run clang-format

Also, set "AlignOperands: true" to continue getting that behavior.
parent bf42fc79
...@@ -2,6 +2,7 @@ BasedOnStyle: WebKit ...@@ -2,6 +2,7 @@ BasedOnStyle: WebKit
AccessModifierOffset: -4 AccessModifierOffset: -4
AlignAfterOpenBracket: true # new in clang rev 222284 AlignAfterOpenBracket: true # new in clang rev 222284
AlignOperands: true # new in clang rev 223117
AlignTrailingComments: true AlignTrailingComments: true
AllowShortFunctionsOnASingleLine: Inline AllowShortFunctionsOnASingleLine: Inline
AllowShortIfStatementsOnASingleLine: false AllowShortIfStatementsOnASingleLine: false
......
...@@ -903,8 +903,7 @@ void Rewriter::commitReturning(RewriterVar* var) { ...@@ -903,8 +903,7 @@ void Rewriter::commitReturning(RewriterVar* var) {
addAction([=]() { addAction([=]() {
var->getInReg(getReturnDestination(), true /* allow_constant_in_reg */); var->getInReg(getReturnDestination(), true /* allow_constant_in_reg */);
var->bumpUse(); var->bumpUse();
}, }, { var }, ActionType::NORMAL);
{ var }, ActionType::NORMAL);
commit(); commit();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment