diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-04 23:15:40 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-09-04 23:15:40 +0000 |
commit | 411281cc8281cf3b6f7b71fb46790d932078acb9 (patch) | |
tree | 05165e89920e9b619021302176f6c8c3ad105294 /llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h | |
parent | 92f8b30d24ce6cbf2537c0b6c9da7641aee8d17a (diff) | |
download | bcm5719-llvm-411281cc8281cf3b6f7b71fb46790d932078acb9.tar.gz bcm5719-llvm-411281cc8281cf3b6f7b71fb46790d932078acb9.zip |
Remove support for breakpoints (not used).
Remove some dead code and whitespace.
llvm-svn: 8346
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h b/llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h index 25b31cd8b40..e17aa4b3552 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h +++ b/llvm/lib/ExecutionEngine/Interpreter/ExecutionAnnotations.h @@ -37,7 +37,6 @@ private: unsigned getValueSlot(const Value *V); }; - //===----------------------------------------------------------------------===// // Support for the SlotNumber annotation //===----------------------------------------------------------------------===// @@ -58,9 +57,6 @@ struct SlotNumber : public Annotation { SlotNum(sn) {} }; - - - //===----------------------------------------------------------------------===// // Support for the InstNumber annotation //===----------------------------------------------------------------------===// @@ -79,14 +75,4 @@ struct InstNumber : public SlotNumber { InstNumber(unsigned in, unsigned sn) : SlotNumber(sn), InstNum(in) {} }; - -//===----------------------------------------------------------------------===// -// Support for the Breakpoint annotation -//===----------------------------------------------------------------------===// - -static AnnotationID BreakpointAID( - AnnotationManager::getID("Interpreter::Breakpoint")); -// Just use an Annotation directly, Breakpoint is currently just a marker - - #endif |