[ELF] - Fix out of sync comment. NFC.

llvm-svn: 315442
This commit is contained in:
George Rimar
2017-10-11 08:18:53 +00:00
parent 26fa916deb
commit 970e783bdd

View File

@@ -170,7 +170,7 @@ static std::vector<StringRef> tokenizeExpr(StringRef S) {
if (S.startswith("\""))
return {S};
// Split S with +-*/ as separators.
// Split S with operators as separators.
std::vector<StringRef> Ret;
while (!S.empty()) {
size_t E = S.find_first_of(Ops);