diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-01 18:44:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-01 18:44:10 +0000 |
commit | da8abb02397d7cd62a1e16e7c534edd7096ac873 (patch) | |
tree | 9649eb5e0a58add6d29e5513a84930629dfbb11b /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 4942a9687dc6c3322dd135cab005c1dd7345df23 (diff) |
It is NDEBUG not _NDEBUG
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23186 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index b587e3697d..4121e400bc 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -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")); |