aboutsummaryrefslogtreecommitdiff
path: root/support/tools/TableGen/FileLexer.l
diff options
context:
space:
mode:
Diffstat (limited to 'support/tools/TableGen/FileLexer.l')
-rw-r--r--support/tools/TableGen/FileLexer.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/tools/TableGen/FileLexer.l b/support/tools/TableGen/FileLexer.l
index 52f46b5239..64ed4c625a 100644
--- a/support/tools/TableGen/FileLexer.l
+++ b/support/tools/TableGen/FileLexer.l
@@ -82,7 +82,7 @@ void ParseFile(const std::string &Filename, const std::string & IncludeDir) {
if (F == 0) {
std::cerr << "Could not open input file '" + Filename + "'!\n";
- abort();
+ exit (1);
}
IncludeStack.push_back(IncludeRec(Filename, F));
} else {