Remove support for breakpoints (not used).
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / ExecutionAnnotations.h
index 25b31cd8b40392f5d603a8b67e9bb4622d46d2e0..e17aa4b3552bf5b24dfa8e50479422d305376b55 100644 (file)
@@ -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