[AsmParser] Placate a -Wmisleading-indentantion warning (GCC7).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@279848 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Davide Italiano 2016-08-26 18:05:03 +00:00
parent def731aa8a
commit fb0de92d8c

View File

@ -287,7 +287,9 @@ bool LLParser::ParseTopLevelEntities() {
case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
case lltok::kw_uselistorder_bb:
if (ParseUseListOrderBB()) return true; break;
if (ParseUseListOrderBB())
return true;
break;
}
}
}