diff options
author | Devang Patel <dpatel@apple.com> | 2007-09-17 22:24:00 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2007-09-17 22:24:00 +0000 |
commit | 26efc6e035d2c31dad215db3c492be0193a4adc9 (patch) | |
tree | d789e25e8511935fc3f0fe987dd67d17be1b1d86 /include/llvm/ADT/APInt.h | |
parent | f5a0f0ebeec4482dc1ae689dba18b14e74327ff8 (diff) | |
download | external_llvm-26efc6e035d2c31dad215db3c492be0193a4adc9.zip external_llvm-26efc6e035d2c31dad215db3c492be0193a4adc9.tar.gz external_llvm-26efc6e035d2c31dad215db3c492be0193a4adc9.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/ADT/APInt.h')
-rw-r--r-- | include/llvm/ADT/APInt.h | 2 |
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 /// @} }; |