diff options
-rw-r--r-- | include/llvm/Instruction.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Instruction.h b/include/llvm/Instruction.h index 31407ff849..85f6cdb0b1 100644 --- a/include/llvm/Instruction.h +++ b/include/llvm/Instruction.h @@ -16,7 +16,6 @@ #define LLVM_INSTRUCTION_H #include "llvm/User.h" -#include "Support/Annotation.h" namespace llvm { @@ -27,7 +26,7 @@ template<typename SC> struct ilist_traits; template<typename ValueSubClass, typename ItemParentClass, typename SymTabClass, typename SubClass> class SymbolTableListTraits; -class Instruction : public User, public Annotable { +class Instruction : public User { BasicBlock *Parent; Instruction *Prev, *Next; // Next and Prev links for our intrusive linked list |