It is NDEBUG not _NDEBUG

llvm-svn: 23186
This commit is contained in:
Chris Lattner 2005-09-01 18:44:10 +00:00
parent e8f78d1aab
commit 975f5c9f46
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"));