From 1988352fbdab8d996bc4cd30ec55eabddadbb8c1 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Mon, 11 May 2009 20:53:52 +0000 Subject: [PATCH] Apply patch review feedback. llvm-svn: 71472 --- llvm/lib/CodeGen/PrologEpilogInserter.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm/lib/CodeGen/PrologEpilogInserter.cpp b/llvm/lib/CodeGen/PrologEpilogInserter.cpp index 44719151c51b..396254fb1535 100644 --- a/llvm/lib/CodeGen/PrologEpilogInserter.cpp +++ b/llvm/lib/CodeGen/PrologEpilogInserter.cpp @@ -1685,10 +1685,12 @@ void PEI::findFastExitPath() { } #ifndef NDEBUG if (HasFastExitPath) { +#endif if (ShrinkWrapDebugging >= BasicInfo) DOUT << "Fast exit path: " << getBasicBlockName(EntryBlock) << "->" << exitPath << "\n"; break; +#ifndef NDEBUG } #endif }