From b820be3afd7ccfbc71f846da50ab40a63763612c Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Sat, 12 Dec 2015 06:30:51 +0000 Subject: [PATCH] Minor formatting cleanup. NFC git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@255428 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaExpr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index 1d1ce44369..2852020e42 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -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(OrArg)) { if (Bop->getOpcode() == BO_And) return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop); -- 2.50.1