aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2007-09-17 22:24:00 +0000
committerDevang Patel <dpatel@apple.com>2007-09-17 22:24:00 +0000
commit8feb1f4467425d23ed74cce61e49f18a51a63421 (patch)
treed789e25e8511935fc3f0fe987dd67d17be1b1d86 /include/llvm
parent856585b6d63de9706584c27683f48ae858a6ca3c (diff)
downloadexternal_llvm-8feb1f4467425d23ed74cce61e49f18a51a63421.zip
external_llvm-8feb1f4467425d23ed74cce61e49f18a51a63421.tar.gz
external_llvm-8feb1f4467425d23ed74cce61e49f18a51a63421.tar.bz2
Do not hide APInt::dump() inside #ifndef NDEBUG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/ADT/APInt.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h
index c6055df..97fe4e9 100644
--- a/include/llvm/ADT/APInt.h
+++ b/include/llvm/ADT/APInt.h
@@ -1160,10 +1160,8 @@ public:
static void tcSetLeastSignificantBits(integerPart *, unsigned int,
unsigned int bits);
-#ifndef NDEBUG
/// @brief debug method
void dump() const;
-#endif
/// @}
};