From 4ae31ba82cfabc786b4bc426335d18fca3d7aeaf Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 25 Feb 2007 02:32:44 +0000 Subject: [PATCH] this doesn't compile, disable it llvm-svn: 34571 --- llvm/lib/Support/APInt.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/llvm/lib/Support/APInt.cpp b/llvm/lib/Support/APInt.cpp index d84bb6472afe..42c8c604e698 100644 --- a/llvm/lib/Support/APInt.cpp +++ b/llvm/lib/Support/APInt.cpp @@ -26,6 +26,8 @@ using namespace llvm; +#if 0 + // A utility function for allocating memory, checking for allocation failures, // and ensuring the contents are zeroed. inline static uint64_t* getClearedMemory(uint32_t numWords) { @@ -1587,3 +1589,5 @@ void APInt::dump() const cerr << " (" << this->toString(10, false) << ")\n" << std::setbase(10); } #endif + +#endif