From: Brian Gaeke Date: Fri, 24 Oct 2003 20:00:06 +0000 (+0000) Subject: lli -q is history. Rebuild your gccld shell scripts, folks! X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7c7a3a2d7fd7b2204f59cb0dcdbe12b44f4989a6;p=oota-llvm.git lli -q is history. Rebuild your gccld shell scripts, folks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9494 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp index 4ad942832ed..a53383cfb1d 100644 --- a/tools/gccld/gccld.cpp +++ b/tools/gccld/gccld.cpp @@ -298,7 +298,7 @@ int main(int argc, char **argv, char **envp) { if (!Out2.good()) return PrintAndReturn(argv[0], "error opening '" + OutputFilename + "' for writing!"); - Out2 << "#!/bin/sh\nlli -q $0.bc $*\n"; + Out2 << "#!/bin/sh\nlli $0.bc $*\n"; Out2.close(); }