From dea4085da04e2e3993f9357ce5049a7fbe05e924 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 19 May 2009 02:19:57 +0000 Subject: [PATCH] Remove the #ifndef NDEBUG from the FastISel debugging options. This fixes dejagnu tests that use these options. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72094 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 5f5aa7b0ab6..ba61c882df2 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -54,7 +54,6 @@ using namespace llvm; static cl::opt DisableLegalizeTypes("disable-legalize-types", cl::Hidden); -#ifndef NDEBUG static cl::opt EnableFastISelVerbose("fast-isel-verbose", cl::Hidden, cl::desc("Enable verbose messages in the \"fast\" " @@ -62,10 +61,6 @@ EnableFastISelVerbose("fast-isel-verbose", cl::Hidden, static cl::opt EnableFastISelAbort("fast-isel-abort", cl::Hidden, cl::desc("Enable abort calls when \"fast\" instruction fails")); -#else -static const bool EnableFastISelVerbose = false, - EnableFastISelAbort = false; -#endif static cl::opt SchedLiveInCopies("schedule-livein-copies", cl::desc("Schedule copies of livein registers"), -- 2.34.1