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

2007-05-07 Thread Reid Spencer
Changes in directory llvm/tools/llvm-prof: llvm-prof.cpp updated: 1.34 -> 1.35 --- Log message: Initialize variable to null so it has a value in the off chance that a memory buffer couldn't be allocated. --- Diffs of the changes: (+1 -1) llvm-prof.cpp |2 +- 1 files changed, 1 insertio

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

2007-05-06 Thread Chris Lattner
Changes in directory llvm/tools/llvm-prof: llvm-prof.cpp updated: 1.33 -> 1.34 --- Log message: use the new MemoryBuffer interfaces to simplify error reporting in clients. --- Diffs of the changes: (+4 -6) llvm-prof.cpp | 10 -- 1 files changed, 4 insertions(+), 6 deletions(-)

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

2007-03-04 Thread Jeff Cohen
Changes in directory llvm/tools/llvm-prof: llvm-prof.cpp updated: 1.30 -> 1.31 --- Log message: Unbreak VC++ build. --- Diffs of the changes: (+1 -0) llvm-prof.cpp |1 + 1 files changed, 1 insertion(+) Index: llvm/tools/llvm-prof/llvm-prof.cpp diff -u llvm/tools/llvm-prof/llvm-prof.cp

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

2007-02-07 Thread Chris Lattner
Changes in directory llvm/tools/llvm-prof: llvm-prof.cpp updated: 1.29 -> 1.30 --- Log message: push bytecode decompressor out through APIs. Now the bytecode reader api's look like this: ModuleProvider *getBytecodeModuleProvider( const std::string &Filename, ///< Name of file to be read

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

2006-12-05 Thread Chris Lattner
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) ll

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

2006-05-24 Thread Reid Spencer
Changes in directory llvm/tools/llvm-prof: llvm-prof.cpp updated: 1.27 -> 1.28 --- Log message: For PR786: http://llvm.cs.uiuc.edu/PR786 : Minor tweaks in public headers and a few .cpp files so that LLVM can build successfully with -pedantic and projects using LLVM with -pedantic don't get war

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

2005-12-30 Thread Reid Spencer
Changes in directory llvm/tools/llvm-prof: llvm-prof.cpp updated: 1.26 -> 1.27 --- Log message: Revert removal of std:: prefixes and addtion of "using namespace std;". This violates the LLVM coding standards. --- Diffs of the changes: (+55 -55) llvm-prof.cpp | 110

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

2005-12-29 Thread Reid Spencer
Changes in directory llvm/tools/llvm-prof: llvm-prof.cpp updated: 1.25 -> 1.26 --- Log message: General cleanup: 1. Don't mix C++ and C standard I/O, convert to C++ iostreams 2. Wrap long lines 3. use the std namespace to simplify/shorten the code --- Diffs of the changes: (+66 -61) llvm-p