[llvm-commits] [llvm] r72094 - /llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Dan Gohman
gohman at apple.com
Mon May 18 19:19:57 PDT 2009
Author: djg
Date: Mon May 18 21:19:57 2009
New Revision: 72094
URL: http://llvm.org/viewvc/llvm-project?rev=72094&view=rev
Log:
Remove the #ifndef NDEBUG from the FastISel debugging options. This
fixes dejagnu tests that use these options.
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp?rev=72094&r1=72093&r2=72094&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp Mon May 18 21:19:57 2009
@@ -54,7 +54,6 @@
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 @@
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"),
More information about the llvm-commits
mailing list