Remove the #ifndef NDEBUG from the FastISel debugging options. This
authorDan Gohman <gohman@apple.com>
Tue, 19 May 2009 02:19:57 +0000 (02:19 +0000)
committerDan Gohman <gohman@apple.com>
Tue, 19 May 2009 02:19:57 +0000 (02:19 +0000)
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

index 5f5aa7b0ab6beb56c0a86550d36b7e38cde156c5..ba61c882df2fabf629053eaaeca8d085fffcd395 100644 (file)
@@ -54,7 +54,6 @@ using namespace llvm;
 
 static cl::opt<bool>
 DisableLegalizeTypes("disable-legalize-types", cl::Hidden);
-#ifndef NDEBUG
 static cl::opt<bool>
 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<bool>
 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<bool>
 SchedLiveInCopies("schedule-livein-copies",
                   cl::desc("Schedule copies of livein registers"),