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

Reid Spencer reid at x10sys.com
Mon Feb 5 12:48:36 PST 2007



Changes in directory llvm/tools/gccld:

GenerateCode.cpp updated: 1.69 -> 1.70
---
Log message:

For PR411: http://llvm.org/PR411 :
This patch replaces the SymbolTable class with ValueSymbolTable which does
not support types planes. This means that all symbol names in LLVM must now
be unique. The patch addresses the necessary changes to deal with this and
removes code no longer needed as a result. This completes the bulk of the
changes for this PR. Some cleanup patches will follow.


---
Diffs of the changes:  (+0 -6)

 GenerateCode.cpp |    6 ------
 1 files changed, 6 deletions(-)


Index: llvm/tools/gccld/GenerateCode.cpp
diff -u llvm/tools/gccld/GenerateCode.cpp:1.69 llvm/tools/gccld/GenerateCode.cpp:1.70
--- llvm/tools/gccld/GenerateCode.cpp:1.69	Sat Feb  3 17:06:03 2007
+++ llvm/tools/gccld/GenerateCode.cpp	Mon Feb  5 14:47:21 2007
@@ -212,12 +212,6 @@
   // Add an appropriate TargetData instance for this module...
   addPass(Passes, new TargetData(M));
 
-  // Often if the programmer does not specify proper prototypes for the
-  // functions they are calling, they end up calling a vararg version of the
-  // function that does not get a body filled in (the real function has typed
-  // arguments).  This pass merges the two functions.
-  addPass(Passes, createFunctionResolvingPass());
-
   if (!DisableOptimizations) {
     // Now that composite has been compiled, scan through the module, looking
     // for a main function.  If main is defined, mark all other functions






More information about the llvm-commits mailing list