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

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



Changes in directory llvm/tools/llvm-prof:

llvm-prof.cpp updated: 1.28 -> 1.29
---
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-prof.cpp |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm/tools/llvm-prof/llvm-prof.cpp
diff -u llvm/tools/llvm-prof/llvm-prof.cpp:1.28 llvm/tools/llvm-prof/llvm-prof.cpp:1.29
--- llvm/tools/llvm-prof/llvm-prof.cpp:1.28	Wed May 24 14:21:12 2006
+++ llvm/tools/llvm-prof/llvm-prof.cpp	Tue Dec  5 19:18:01 2006
@@ -19,6 +19,7 @@
 #include "llvm/Analysis/ProfileInfoLoader.h"
 #include "llvm/Bytecode/Reader.h"
 #include "llvm/Support/CommandLine.h"
+#include "llvm/Support/ManagedStatic.h"
 #include "llvm/System/Signals.h"
 #include <iostream>
 #include <iomanip>
@@ -107,6 +108,7 @@
 
 
 int main(int argc, char **argv) {
+  llvm_shutdown_obj X;  // Call llvm_shutdown() on exit.
   try {
     cl::ParseCommandLineOptions(argc, argv, " llvm profile dump decoder\n");
     sys::PrintStackTraceOnErrorSignal();






More information about the llvm-commits mailing list