Use const int instead of #define.

llvm-svn: 388
This commit is contained in:
Vikram S. Adve 2001-08-28 21:35:26 +00:00
parent 586a1d73a9
commit 7e95d47bdc
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"