Remove `else` after `break`.

llvm-svn: 276162
This commit is contained in:
Rui Ueyama 2016-07-20 19:36:36 +00:00
parent 37ceedeabd
commit 047404f711
1 changed files with 1 additions and 2 deletions

View File

@ -777,8 +777,7 @@ std::vector<StringRef> ScriptParser::readOutputSectionPhdrs() {
setError("section header name is empty");
break;
}
else
Phdrs.push_back(Tok);
Phdrs.push_back(Tok);
}
return Phdrs;
}