diff options
author | Manman Ren <mren@apple.com> | 2012-09-06 19:55:56 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2012-09-06 19:55:56 +0000 |
commit | c3366ccecb3ffa7eecf0c8a173e5fc8387a44b29 (patch) | |
tree | db482bae56f5e3a06e1ad311ee506ecd1d088c02 /llvm/lib/Analysis/LoopInfo.cpp | |
parent | 84ecc3481b7dc1c9a8264dd11ea91ff9dcd9dbd2 (diff) | |
download | bcm5719-llvm-c3366ccecb3ffa7eecf0c8a173e5fc8387a44b29.tar.gz bcm5719-llvm-c3366ccecb3ffa7eecf0c8a173e5fc8387a44b29.zip |
Release build: guard dump functions with "ifndef NDEBUG"
No functional change.
llvm-svn: 163344
Diffstat (limited to 'llvm/lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LoopInfo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp index 49767d69b26..4a181047765 100644 --- a/llvm/lib/Analysis/LoopInfo.cpp +++ b/llvm/lib/Analysis/LoopInfo.cpp @@ -306,9 +306,11 @@ BasicBlock *Loop::getUniqueExitBlock() const { return 0; } +#ifndef NDEBUG void Loop::dump() const { print(dbgs()); } +#endif //===----------------------------------------------------------------------===// // UnloopUpdater implementation |