summaryrefslogtreecommitdiff
path: root/include/llvm/Function.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-31 01:52:50 +0000
committerDan Gohman <gohman@apple.com>2009-07-31 01:52:50 +0000
commit933c762371fe8cc6e2ef5d00d6866f4924852fed (patch)
tree7ed04e07511afdbf1ed211a509a0c9314caca84d /include/llvm/Function.h
parent376cd007ec2da67bddd15d68623e51a6e122869c (diff)
downloadllvm-933c762371fe8cc6e2ef5d00d6866f4924852fed.tar.gz
llvm-933c762371fe8cc6e2ef5d00d6866f4924852fed.tar.bz2
llvm-933c762371fe8cc6e2ef5d00d6866f4924852fed.tar.xz
Manage MachineFunctions with an analysis Pass instead of the Annotable
mechanism. To support this, make MachineFunctionPass a little more complete. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77654 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Function.h')
-rw-r--r--include/llvm/Function.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/Function.h b/include/llvm/Function.h
index 57ebfb10a5..90d9b0ee46 100644
--- a/include/llvm/Function.h
+++ b/include/llvm/Function.h
@@ -21,7 +21,6 @@
#include "llvm/GlobalValue.h"
#include "llvm/BasicBlock.h"
#include "llvm/Argument.h"
-#include "llvm/Support/Annotation.h"
#include "llvm/Attributes.h"
namespace llvm {
@@ -66,7 +65,7 @@ private:
mutable ilist_node<Argument> Sentinel;
};
-class Function : public GlobalValue, public Annotable,
+class Function : public GlobalValue,
public ilist_node<Function> {
public:
typedef iplist<Argument> ArgumentListType;