From cda67e50867c41c75e1d864e33044e08c1c7fea7 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 23 Aug 2001 17:06:21 +0000 Subject: [PATCH] Add annotation support to value git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@363 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Value.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Value.h b/include/llvm/Value.h index 07a61a60188..85c5e76ae82 100644 --- a/include/llvm/Value.h +++ b/include/llvm/Value.h @@ -8,8 +8,8 @@ #ifndef LLVM_VALUE_H #define LLVM_VALUE_H -#include #include +#include "llvm/Annotation.h" class User; class Type; @@ -26,7 +26,7 @@ template // Value Class //===----------------------------------------------------------------------===// -class Value { +class Value : public Annotable { // Value's are annotable public: enum ValueTy { TypeVal, // This is an instance of Type