[llvm-commits] CVS: llvm/tools/llvm-ld/Optimize.cpp
Chris Lattner
lattner at cs.uiuc.edu
Thu Dec 2 13:27:48 PST 2004
Changes in directory llvm/tools/llvm-ld:
Optimize.cpp updated: 1.1 -> 1.2
---
Log message:
Adjust to change in pass name
---
Diffs of the changes: (+2 -2)
Index: llvm/tools/llvm-ld/Optimize.cpp
diff -u llvm/tools/llvm-ld/Optimize.cpp:1.1 llvm/tools/llvm-ld/Optimize.cpp:1.2
--- llvm/tools/llvm-ld/Optimize.cpp:1.1 Sat Nov 20 13:43:28 2004
+++ llvm/tools/llvm-ld/Optimize.cpp Thu Dec 2 15:27:35 2004
@@ -126,10 +126,10 @@
addPass(Passes, createConstantMergePass());
// If the -s command line option was specified, strip the symbols out of the
- // resulting program to make it smaller. -s is a GCC option that we are
+ // resulting program to make it smaller. -s is a GLD option that we are
// supporting.
if (Strip)
- addPass(Passes, createSymbolStrippingPass());
+ addPass(Passes, createStripSymbolsPass());
// Propagate constants at call sites into the functions they call.
addPass(Passes, createIPConstantPropagationPass());
More information about the llvm-commits
mailing list