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

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



Changes in directory llvm/tools/llvm-link:

llvm-link.cpp updated: 1.59 -> 1.60
---
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)

 llvm-link.cpp |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm/tools/llvm-link/llvm-link.cpp
diff -u llvm/tools/llvm-link/llvm-link.cpp:1.59 llvm/tools/llvm-link/llvm-link.cpp:1.60
--- llvm/tools/llvm-link/llvm-link.cpp:1.59	Tue Nov 28 18:19:40 2006
+++ llvm/tools/llvm-link/llvm-link.cpp	Tue Dec  5 19:18:01 2006
@@ -18,6 +18,7 @@
 #include "llvm/Bytecode/Reader.h"
 #include "llvm/Bytecode/Writer.h"
 #include "llvm/Support/CommandLine.h"
+#include "llvm/Support/ManagedStatic.h"
 #include "llvm/Support/Streams.h"
 #include "llvm/System/Signals.h"
 #include "llvm/System/Path.h"
@@ -75,6 +76,7 @@
 }
 
 int main(int argc, char **argv) {
+  llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
   try {
     cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
     sys::PrintStackTraceOnErrorSignal();






More information about the llvm-commits mailing list