It is NDEBUG not _NDEBUG

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23186 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-09-01 18:44:10 +00:00
parent 4942a9687d
commit da8abb0239
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@
#include "llvm/Support/CommandLine.h"
using namespace llvm;
#ifndef _NDEBUG
#ifndef NDEBUG
static cl::opt<bool>
ViewDAGs("view-sched-dags", cl::Hidden,
cl::desc("Pop up a window to show sched dags as they are processed"));
@ -103,7 +103,7 @@ unsigned SimpleSched::Emit(SDOperand Op) {
--NodeOperands;
unsigned NumMIOperands = NodeOperands+NumResults;
#ifndef _NDEBUG
#ifndef NDEBUG
assert((unsigned(II.numOperands) == NumMIOperands || II.numOperands == -1)&&
"#operands for dag node doesn't match .td file!");
#endif

View File

@ -36,7 +36,7 @@
#include <iostream>
using namespace llvm;
#ifndef _NDEBUG
#ifndef NDEBUG
static cl::opt<bool>
ViewDAGs("view-isel-dags", cl::Hidden,
cl::desc("Pop up a window to show isel dags as they are selected"));