mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
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:
parent
4942a9687d
commit
da8abb0239
@ -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
|
||||
|
@ -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"));
|
||||
|
Loading…
x
Reference in New Issue
Block a user