From 286c4dc355b8be6806081b23c3097485821c7642 Mon Sep 17 00:00:00 2001 From: Manman Ren Date: Wed, 12 Sep 2012 05:06:18 +0000 Subject: Release build: guard dump functions with "#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)" No functional change. Update r163344. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163679 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/MC/MCLabel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/MC/MCLabel.cpp') diff --git a/lib/MC/MCLabel.cpp b/lib/MC/MCLabel.cpp index 95d7d16a19..1d3022a93e 100644 --- a/lib/MC/MCLabel.cpp +++ b/lib/MC/MCLabel.cpp @@ -16,7 +16,7 @@ void MCLabel::print(raw_ostream &OS) const { OS << '"' << getInstance() << '"'; } -#ifndef NDEBUG +#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) void MCLabel::dump() const { print(dbgs()); } -- cgit v1.2.3