From: Brian Gaeke Date: Fri, 5 Sep 2003 19:23:03 +0000 (+0000) Subject: -abort-on-exception is gone. Rebuild your gccld shell scripts, folks! :-) X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5c9cd9564f4917f4ac84f56e65b0e31adffdc975;p=oota-llvm.git -abort-on-exception is gone. Rebuild your gccld shell scripts, folks! :-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8368 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index a797488a436..b6d20023f91 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -437,7 +437,7 @@ int main(int argc, char **argv) { if (!Out2.good()) return PrintAndReturn(argv[0], "error opening '" + OutputFilename + "' for writing!"); - Out2 << "#!/bin/sh\nlli -q -abort-on-exception $0.bc $*\n"; + Out2 << "#!/bin/sh\nlli -q $0.bc $*\n"; Out2.close(); // Make the script executable...