From: Duncan P. N. Exon Smith Date: Wed, 18 Feb 2015 19:56:50 +0000 (+0000) Subject: Fix -DNDEBUG -Werror build after r229733 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f866bfc6aab20cddad1ee7e2e8d705be247d635b;p=llvm Fix -DNDEBUG -Werror build after r229733 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229736 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/IR/DebugInfo.cpp b/lib/IR/DebugInfo.cpp index c39c11988a2..92d7e4590a9 100644 --- a/lib/IR/DebugInfo.cpp +++ b/lib/IR/DebugInfo.cpp @@ -428,6 +428,7 @@ static bool fieldIsScopeRef(const MDNode *DbgNode, unsigned Elt) { return isScopeRef(dyn_cast_or_null(getField(DbgNode, Elt))); } +#ifndef NDEBUG /// \brief Check if a value can be a DescriptorRef. static bool isDescriptorRef(const Metadata *MD) { if (!MD) @@ -436,6 +437,7 @@ static bool isDescriptorRef(const Metadata *MD) { return !S->getString().empty(); return isa(MD); } +#endif bool DIType::Verify() const { if (!isType())