diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-05-06 18:39:28 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-05-06 18:39:28 +0000 |
commit | 96883ec7002890b949e369cc6e0a5043c110a462 (patch) | |
tree | 0649602ebb4db9154b949d922a2c38733bcd7d19 /utils/TableGen/TableGen.cpp | |
parent | 9dabb78519c0e8b6df7a4461c252d5957106be0c (diff) |
ParseFile() may throw, so extend the try/catch to handle that.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131004 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/TableGen.cpp')
-rw-r--r-- | utils/TableGen/TableGen.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/utils/TableGen/TableGen.cpp b/utils/TableGen/TableGen.cpp index aa92302524..d88a2d6a0e 100644 --- a/utils/TableGen/TableGen.cpp +++ b/utils/TableGen/TableGen.cpp @@ -228,19 +228,19 @@ int main(int argc, char **argv) { cl::ParseCommandLineOptions(argc, argv); - // Parse the input file. - if (ParseFile(InputFilename, IncludeDirs, SrcMgr, Records)) - return 1; + try { + // Parse the input file. + if (ParseFile(InputFilename, IncludeDirs, SrcMgr, Records)) + return 1; - std::string Error; - tool_output_file Out(OutputFilename.c_str(), Error); - if (!Error.empty()) { - errs() << argv[0] << ": error opening " << OutputFilename - << ":" << Error << "\n"; - return 1; - } + std::string Error; + tool_output_file Out(OutputFilename.c_str(), Error); + if (!Error.empty()) { + errs() << argv[0] << ": error opening " << OutputFilename + << ":" << Error << "\n"; + return 1; + } - try { switch (Action) { case PrintRecords: Out.os() << Records; // No argument, dump all contents |