diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-08-28 21:35:26 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2001-08-28 21:35:26 +0000 |
commit | 81cd1e50ec9c0ff36512e52cac0055fa32526914 (patch) | |
tree | af0f9774f577148aea30d2dc63cf59cc4b5f26c5 /include | |
parent | 9827c6e315f189e3e3097d8cf2a86dfbd17e49bf (diff) | |
download | external_llvm-81cd1e50ec9c0ff36512e52cac0055fa32526914.zip external_llvm-81cd1e50ec9c0ff36512e52cac0055fa32526914.tar.gz external_llvm-81cd1e50ec9c0ff36512e52cac0055fa32526914.tar.bz2 |
Use const int instead of #define.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@388 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/FunctionLiveVarInfo.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h b/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h index c148d0c..64a90c0 100644 --- a/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h +++ b/include/llvm/Analysis/LiveVar/FunctionLiveVarInfo.h @@ -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" diff --git a/include/llvm/CodeGen/FunctionLiveVarInfo.h b/include/llvm/CodeGen/FunctionLiveVarInfo.h index c148d0c..64a90c0 100644 --- a/include/llvm/CodeGen/FunctionLiveVarInfo.h +++ b/include/llvm/CodeGen/FunctionLiveVarInfo.h @@ -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" |