diff options
author | Dan Gohman <gohman@apple.com> | 2010-03-27 16:36:08 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-03-27 16:36:08 +0000 |
commit | 92f5fccb4d35b2dc775ee8f69d11d2b8b2df7e9d (patch) | |
tree | 44be647ffc742d81e0d67e39a10f4e176b25de31 /tools/llvm-ld | |
parent | 60a6e1f461392a94366567468129d54b7378e93e (diff) |
No need to check the same condition twice.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99716 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-ld')
-rw-r--r-- | tools/llvm-ld/llvm-ld.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp index 86c06c1e8f..9956e23ddd 100644 --- a/tools/llvm-ld/llvm-ld.cpp +++ b/tools/llvm-ld/llvm-ld.cpp @@ -611,7 +611,7 @@ int main(int argc, char **argv, char **envp) { args[2] = tmp_output.c_str(); args[3] = 0; if (0 == sys::Program::ExecuteAndWait(prog, args, 0,0,0,0, &ErrMsg)) { - if (tmp_output.isBitcodeFile() || tmp_output.isBitcodeFile()) { + if (tmp_output.isBitcodeFile()) { sys::Path target(BitcodeOutputFilename); target.eraseFromDisk(); if (tmp_output.renamePathOnDisk(target, &ErrMsg)) |