Use const int instead of #define.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@388 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2001-08-28 21:35:26 +00:00
parent 9827c6e315
commit 81cd1e50ec
2 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@
// if DEBUG_LV is 1 normal output messages
// if DEBUG_LV is 2 extensive debug info for each instr
#define DEBUG_LV (1)
static const int DEBUG_LV = 0;
#include "LiveVarSet.h"
#include "llvm/BasicBlock.h"

View File

@ -67,7 +67,7 @@
// if DEBUG_LV is 1 normal output messages
// if DEBUG_LV is 2 extensive debug info for each instr
#define DEBUG_LV (1)
static const int DEBUG_LV = 0;
#include "LiveVarSet.h"
#include "llvm/BasicBlock.h"