diff options
Diffstat (limited to 'llvm/lib/Analysis/LiveVar/BBLiveVar.h')
-rw-r--r-- | llvm/lib/Analysis/LiveVar/BBLiveVar.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/llvm/lib/Analysis/LiveVar/BBLiveVar.h b/llvm/lib/Analysis/LiveVar/BBLiveVar.h index aaee45fd451..79cf7dce079 100644 --- a/llvm/lib/Analysis/LiveVar/BBLiveVar.h +++ b/llvm/lib/Analysis/LiveVar/BBLiveVar.h @@ -14,6 +14,15 @@ class BasicBlock; class Value; +enum LiveVarDebugLevel_t { + LV_DEBUG_None, + LV_DEBUG_Normal, + LV_DEBUG_Instr, + LV_DEBUG_Verbose +}; + +extern LiveVarDebugLevel_t DEBUG_LV; + class BBLiveVar : public Annotation { const BasicBlock *BB; // pointer to BasicBlock unsigned POID; // Post-Order ID |