[llvm-commits] CVS: llvm/tools/gccld/gccld.cpp

Chris Lattner lattner at cs.uiuc.edu
Thu Aug 14 23:58:01 PDT 2003


Changes in directory llvm/tools/gccld:

gccld.cpp updated: 1.37 -> 1.38

---
Log message:

rename selection library to selectiondag


---
Diffs of the changes:

Index: llvm/tools/gccld/gccld.cpp
diff -u llvm/tools/gccld/gccld.cpp:1.37 llvm/tools/gccld/gccld.cpp:1.38
--- llvm/tools/gccld/gccld.cpp:1.37	Thu Jun 26 00:29:50 2003
+++ llvm/tools/gccld/gccld.cpp	Thu Aug 14 23:55:59 2003
@@ -367,7 +367,7 @@
   PassManager Passes;
 
   // Add an appropriate TargetData instance for this module...
-  Passes.add(new TargetData("gccas", Composite.get()));
+  Passes.add(new TargetData("gccld", Composite.get()));
 
   // Linking modules together can lead to duplicated global constants, only keep
   // one copy of each constant...
@@ -386,6 +386,7 @@
   // function that does not get a body filled in (the real function has typed
   // arguments).  This pass merges the two functions.
   //
+  Passes.add(createFunctionResolvingPass());
   Passes.add(createFunctionResolvingPass());
 
   if (!NoInternalize) {





More information about the llvm-commits mailing list