Fix the release build, noticed by Eric van Riet Paap

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23215 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-09-02 07:09:28 +00:00
parent 7b4ad94282
commit a639a43602
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ static cl::opt<bool>
ViewDAGs("view-sched-dags", cl::Hidden,
cl::desc("Pop up a window to show sched dags as they are processed"));
#else
static const bool ViewDAGS = 0;
static const bool ViewDAGs = 0;
#endif
namespace {

View File

@ -41,7 +41,7 @@ static cl::opt<bool>
ViewDAGs("view-isel-dags", cl::Hidden,
cl::desc("Pop up a window to show isel dags as they are selected"));
#else
static const bool ViewDAGS = 0;
static const bool ViewDAGs = 0;
#endif
namespace llvm {