Minor formatting cleanup. NFC

llvm-svn: 255428
This commit is contained in:
Craig Topper 2015-12-12 06:30:51 +00:00
parent f942fde819
commit 716d3088e1
1 changed files with 1 additions and 1 deletions

View File

@ -10591,7 +10591,7 @@ static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc,
/// \brief Look for '&' in the left or right hand of a '|' expr.
static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc,
Expr *OrArg) {
Expr *OrArg) {
if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) {
if (Bop->getOpcode() == BO_And)
return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop);