diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-05 19:23:03 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-05 19:23:03 +0000 |
commit | 28f8e412031db19ce33a1085fe3727eb51a63b35 (patch) | |
tree | fa8f72d3d7e481f54a93b978e6aeeb7b537f05c3 /llvm | |
parent | 9b518bc0bed05acc05402f230758c2f1799c6834 (diff) | |
download | bcm5719-llvm-28f8e412031db19ce33a1085fe3727eb51a63b35.tar.gz bcm5719-llvm-28f8e412031db19ce33a1085fe3727eb51a63b35.zip |
-abort-on-exception is gone. Rebuild your gccld shell scripts, folks! :-)
llvm-svn: 8368
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/tools/gccld/gccld.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/gccld/gccld.cpp b/llvm/tools/gccld/gccld.cpp index a797488a436..b6d20023f91 100644 --- a/llvm/tools/gccld/gccld.cpp +++ b/llvm/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... |