Change-Id: I862f00a548236872fe24f7da8eb2bf7917e123ff
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@351576
91177308-0d34-0410-b5e6-
96231b3b80d8
}
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());