From: Chris Lattner Date: Mon, 27 Sep 2004 16:41:01 +0000 (+0000) Subject: Hrm, if there is an error loading a file, try printing a message so the X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=48f44cf5b3717df78933f968424213f39f807997;p=oota-llvm.git Hrm, if there is an error loading a file, try printing a message so the user knows that... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16524 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvm-link/llvm-link.cpp b/tools/llvm-link/llvm-link.cpp index 150ab0d65ac..6e404918b66 100644 --- a/tools/llvm-link/llvm-link.cpp +++ b/tools/llvm-link/llvm-link.cpp @@ -80,11 +80,19 @@ int main(int argc, char **argv) { std::string ErrorMessage; std::auto_ptr Composite(LoadFile(InputFilenames[BaseArg])); - if (Composite.get() == 0) return 1; + if (Composite.get() == 0) { + std::cerr << argv[0] << ": error loading file '" + << InputFilenames[BaseArg] << "'\n"; + return 1; + } for (unsigned i = BaseArg+1; i < InputFilenames.size(); ++i) { std::auto_ptr M(LoadFile(InputFilenames[i])); - if (M.get() == 0) return 1; + if (M.get() == 0) { + std::cerr << argv[0] << ": error loading file '" + << InputFilenames[i] << "'\n"; + return 1; + } if (Verbose) std::cerr << "Linking in '" << InputFilenames[i] << "'\n";