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

Chris Lattner sabre at nondot.org
Tue Dec 5 17:18:53 PST 2006



Changes in directory llvm/tools/gccld:

gccld.cpp updated: 1.113 -> 1.114
---
Log message:

make all llvm tools call llvm_shutdown when they exit, static'ify some stuff.

With this change, I can now move -stats to print when llvm_shutdown is called.


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

 gccld.cpp |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm/tools/gccld/gccld.cpp
diff -u llvm/tools/gccld/gccld.cpp:1.113 llvm/tools/gccld/gccld.cpp:1.114
--- llvm/tools/gccld/gccld.cpp:1.113	Thu Nov 30 19:05:14 2006
+++ llvm/tools/gccld/gccld.cpp	Tue Dec  5 19:18:00 2006
@@ -30,6 +30,7 @@
 #include "llvm/Transforms/Scalar.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/FileUtilities.h"
+#include "llvm/Support/ManagedStatic.h"
 #include "llvm/Support/Streams.h"
 #include "llvm/System/Signals.h"
 #include "llvm/Support/SystemUtils.h"
@@ -214,6 +215,7 @@
 }
 
 int main(int argc, char **argv, char **envp ) {
+  llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
   cl::ParseCommandLineOptions(argc, argv, " llvm linker for GCC\n");
   sys::PrintStackTraceOnErrorSignal();
 






More information about the llvm-commits mailing list