Skip to content

Commit ad46796

Browse files
committed
[NFC] Fix format
1 parent 20e5fc1 commit ad46796

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/utils/TableGen/SveEmitter.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -492,9 +492,9 @@ std::string SVEType::builtin_str() const {
492492
}
493493

494494
// Make chars and integer pointers explicitly signed.
495-
if((ElementBitwidth == 8 || isPointer()) && isSignedInteger())
495+
if ((ElementBitwidth == 8 || isPointer()) && isSignedInteger())
496496
OutStr = "S" + OutStr;
497-
else if(isUnsignedInteger())
497+
else if (isUnsignedInteger())
498498
OutStr = "U" + OutStr;
499499

500500
// Constant indices are "int", but have the "constant expression" modifier.
@@ -1005,7 +1005,7 @@ std::string Intrinsic::replaceTemplatedArgs(std::string Name, TypeSpec TS,
10051005
// Replace templated arg with the right suffix (e.g. u32)
10061006
std::string TypeCode;
10071007

1008-
if(T.isSignedInteger())
1008+
if (T.isSignedInteger())
10091009
TypeCode = 's';
10101010
else if (T.isUnsignedInteger())
10111011
TypeCode = 'u';

0 commit comments

Comments
 (0)