Simplify ".bc" detection.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101365 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2010-04-15 11:33:14 +00:00
parent 165dac08d1
commit 3bb37e968b

View File

@ -192,8 +192,7 @@ int main(int argc, char **argv, char * const *envp) {
} else {
// Otherwise, if there is a .bc suffix on the executable strip it off, it
// might confuse the program.
if (InputFile.size() > 3 &&
InputFile.rfind(".bc") == InputFile.length() - 3)
if (StringRef(InputFile).endswith(".bc"))
InputFile.erase(InputFile.length() - 3);
}