Skip to content

Commit d7facaf

Browse files
committed
Fix format issue
1 parent 2e8c10e commit d7facaf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/AsmParser/LLParser.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1625,8 +1625,7 @@ bool LLParser::parseEnumAttribute(Attribute::AttrKind Attr, AttrBuilder &B,
16251625
if (InAttrGroup) {
16261626
Lex.Lex();
16271627
LocTy DepthLoc = Lex.getLoc();
1628-
if (parseToken(lltok::equal, "expected '=' here") ||
1629-
parseUInt64(Depth))
1628+
if (parseToken(lltok::equal, "expected '=' here") || parseUInt64(Depth))
16301629
return true;
16311630
if (!Depth)
16321631
return error(DepthLoc, "flatten_deep depth must be non-zero");

0 commit comments

Comments
 (0)