From: Dan Gohman Date: Sat, 27 Mar 2010 16:36:08 +0000 (+0000) Subject: No need to check the same condition twice. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=92f5fccb4d35b2dc775ee8f69d11d2b8b2df7e9d;p=oota-llvm.git 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 --- diff --git a/tools/llvm-ld/llvm-ld.cpp b/tools/llvm-ld/llvm-ld.cpp index 86c06c1e8f8..9956e23ddd8 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))