r351576 - [NFC] Fix wParentheses warning in ASTContext getFixedPointSemantics

Erich Keane via cfe-commits cfe-commits at lists.llvm.org
Fri Jan 18 11:31:55 PST 2019


Author: erichkeane
Date: Fri Jan 18 11:31:54 2019
New Revision: 351576

URL: http://llvm.org/viewvc/llvm-project?rev=351576&view=rev
Log:
[NFC] Fix wParentheses warning in ASTContext getFixedPointSemantics

Change-Id: I862f00a548236872fe24f7da8eb2bf7917e123ff

Modified:
    cfe/trunk/lib/AST/ASTContext.cpp

Modified: cfe/trunk/lib/AST/ASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTContext.cpp?rev=351576&r1=351575&r2=351576&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Fri Jan 18 11:31:54 2019
@@ -10485,9 +10485,9 @@ unsigned char ASTContext::getFixedPointI
 }
 
 FixedPointSemantics ASTContext::getFixedPointSemantics(QualType Ty) const {
-  assert(Ty->isFixedPointType() ||
-         Ty->isIntegerType() && "Can only get the fixed point semantics for a "
-                                "fixed point or integer type.");
+  assert((Ty->isFixedPointType() || Ty->isIntegerType()) &&
+         "Can only get the fixed point semantics for a "
+         "fixed point or integer type.");
   if (Ty->isIntegerType())
     return FixedPointSemantics::GetIntegerSemantics(getIntWidth(Ty),
                                                     Ty->isSignedIntegerType());




More information about the cfe-commits mailing list