Skip to content

Commit b36fcc5

Browse files
committed
Fix formatting
1 parent 0214818 commit b36fcc5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

clang/lib/AST/ExprConstant.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11172,7 +11172,7 @@ VectorExprEvaluator::VisitInitListExpr(const InitListExpr *E) {
1117211172
QualType EltTy = VT->getElementType();
1117311173
SmallVector<APValue, 4> Elements;
1117411174

11175-
// MFloat8 type doesn't have constants and thus constant folding
11175+
// MFloat8 type doesn't have constants and thus constant folding
1117611176
// is impossible.
1117711177
if (EltTy->isMFloat8Type())
1117811178
return false;

clang/lib/Sema/SemaInit.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1589,7 +1589,8 @@ void InitListChecker::CheckSubElementType(const InitializedEntity &Entity,
15891589

15901590
} else {
15911591
assert((ElemType->isRecordType() || ElemType->isVectorType() ||
1592-
ElemType->isOpenCLSpecificType() || ElemType->isMFloat8Type()) && "Unexpected type");
1592+
ElemType->isOpenCLSpecificType() || ElemType->isMFloat8Type()) &&
1593+
"Unexpected type");
15931594

15941595
// C99 6.7.8p13:
15951596
//

0 commit comments

Comments
 (0)