[llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2007-06-27 Thread Dan Gohman
Changes in directory llvm/include/llvm/Support: Debug.h updated: 1.15 - 1.16 --- Log message: Allow DOUT to be used outside of the llvm namespace. --- Diffs of the changes: (+2 -2) Debug.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Index:

[llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2007-02-01 Thread Reid Spencer
Changes in directory llvm/include/llvm/Support: Debug.h updated: 1.14 - 1.15 --- Log message: Fix a homonymo in a comment. --- Diffs of the changes: (+1 -1) Debug.h |2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: llvm/include/llvm/Support/Debug.h diff -u

[llvm-commits] CVS: llvm/include/llvm/Support/Debug.h Streams.h

2007-01-03 Thread Bill Wendling
Changes in directory llvm/include/llvm/Support: Debug.h updated: 1.13 - 1.14 Streams.h updated: 1.7 - 1.8 --- Log message: The previous implementation of LLVM Streams wasn't removing symbols. This one should. --- Diffs of the changes: (+1 -7) Debug.h |2 +- Streams.h |6 --

[llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2006-11-16 Thread Bill Wendling
Changes in directory llvm/include/llvm/Support: Debug.h updated: 1.7 - 1.8 --- Log message: Added DOUT macro. This is used as a replacement for the std::cerr stream. It centralizes the use of std::cerr so that static c'tor/d'tors aren't scattered around all over the place. The way to use it is

[llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2006-11-16 Thread Bill Wendling
Changes in directory llvm/include/llvm/Support: Debug.h updated: 1.8 - 1.9 --- Log message: Adjusted the // comments so that doxygen picks them up. --- Diffs of the changes: (+7 -7) Debug.h | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) Index:

Re: [llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2006-11-16 Thread Reid Spencer
Bill, On Thu, 2006-11-16 at 18:49 -0600, Bill Wendling wrote: Changes in directory llvm/include/llvm/Support: Debug.h updated: 1.7 - 1.8 --- Log message: Added DOUT macro. This is used as a replacement for the std::cerr stream. It centralizes the use of std::cerr so that static

[llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2006-11-16 Thread Bill Wendling
Changes in directory llvm/include/llvm/Support: Debug.h updated: 1.9 - 1.10 --- Log message: #ifndef NDEBUG the if (Stream) ... stuff. --- Diffs of the changes: (+2 -0) Debug.h |2 ++ 1 files changed, 2 insertions(+) Index: llvm/include/llvm/Support/Debug.h diff -u

Re: [llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2006-11-16 Thread Bill Wendling
On 11/16/06, Reid Spencer [EMAIL PROTECTED] wrote: On Thu, 2006-11-16 at 18:49 -0600, Bill Wendling wrote: Added DOUT macro. This is used as a replacement for the std::cerr stream. It centralizes the use of std::cerr so that static c'tor/d'tors aren't scattered around all over the place.

Re: [llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2006-11-16 Thread Bill Wendling
On Nov 16, 2006, at 6:25 PM, Reid Spencer wrote: On Thu, 2006-11-16 at 17:44 -0800, Bill Wendling wrote: Basically, this is to get rid of static c'tor/d'tors scattered all over the source tree. (You get them whenever you #include iostream.) A smart compiler should be able to remove all of

Re: [llvm-commits] CVS: llvm/include/llvm/Support/Debug.h

2006-11-16 Thread Bill Wendling
On Nov 16, 2006, at 6:25 PM, Reid Spencer wrote: Can we build an optimized, with symbols (-g -O2) version of one of these modules and see if those symbols are getting removed ? If so, I'm fine with it. If not, we need a new strategy. I just compiled the normal way (with -g) and