summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-02-27 04:32:35 +0000
committerChris Lattner <sabre@nondot.org>2005-02-27 04:32:35 +0000
commit5315aa0ec60d31481bcefd8790943175dcc7f8c3 (patch)
treeebf618eaa3a09f291a294f7659a16a7bb9147f19 /llvm/lib
parent0b0f3520cb1a138f1df0e28cbd2a58a868e27b35 (diff)
downloadbcm5719-llvm-5315aa0ec60d31481bcefd8790943175dcc7f8c3.tar.gz
bcm5719-llvm-5315aa0ec60d31481bcefd8790943175dcc7f8c3.zip
Remove some stuff I checked in accidentally
llvm-svn: 20340
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Support/ToolRunner.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Support/ToolRunner.cpp b/llvm/lib/Support/ToolRunner.cpp
index c68bd421578..a25e4bd0905 100644
--- a/llvm/lib/Support/ToolRunner.cpp
+++ b/llvm/lib/Support/ToolRunner.cpp
@@ -391,10 +391,6 @@ int GCC::ExecuteProgram(const std::string &ProgramFile,
sys::Path OutputBinary (ProgramFile+".gcc.exe");
OutputBinary.makeUnique();
GCCArgs.push_back(OutputBinary.c_str()); // Output to the right file...
- GCCArgs.push_back("-L/home/vadve/shared/localtools/x86/lib");
- GCCArgs.push_back("-lf2c"); // Hard-code the math library...
- GCCArgs.push_back("-lpng"); // Hard-code the math library...
- GCCArgs.push_back("-lz"); // Hard-code the math library...
GCCArgs.push_back("-lm"); // Hard-code the math library...
GCCArgs.push_back("-O2"); // Optimize the program a bit...
#if defined (HAVE_LINK_R)
@@ -410,8 +406,6 @@ int GCC::ExecuteProgram(const std::string &ProgramFile,
}
std::vector<const char*> ProgramArgs;
- //ProgramArgs.push_back("valgrind");
- //ProgramArgs.push_back("--tool=memcheck");
ProgramArgs.push_back(OutputBinary.c_str());
// Add optional parameters to the running program from Argv
OpenPOWER on IntegriCloud