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

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



Changes in directory llvm/tools/opt:

opt.cpp updated: 1.129 -> 1.130
---
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 -1)

 opt.cpp |    1 -
 1 files changed, 1 deletion(-)


Index: llvm/tools/opt/opt.cpp
diff -u llvm/tools/opt/opt.cpp:1.129 llvm/tools/opt/opt.cpp:1.130
--- llvm/tools/opt/opt.cpp:1.129	Sat Feb  3 17:15:56 2007
+++ llvm/tools/opt/opt.cpp	Mon Feb  5 14:47:22 2007
@@ -178,7 +178,6 @@
   PM.add(createVerifierPass());                  // Verify that input is correct
 
   addPass(PM, createLowerSetJmpPass());          // Lower llvm.setjmp/.longjmp
-  addPass(PM, createFunctionResolvingPass());    // Resolve (...) functions
 
   // If the -strip-debug command line option was specified, do it.
   if (StripDebug)






More information about the llvm-commits mailing list