aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-31 18:35:51 +0000
committerDan Gohman <gohman@apple.com>2009-07-31 18:35:51 +0000
commit58ccf8dee03d7cf79468a774979ad065c5f945ac (patch)
tree19e267d543ebabd187a0fa9a5cc12ef68eefbc0e /include/llvm
parentb6a03389e694fb958d6e29fa3fcbf8d698d77a7e (diff)
downloadexternal_llvm-58ccf8dee03d7cf79468a774979ad065c5f945ac.zip
external_llvm-58ccf8dee03d7cf79468a774979ad065c5f945ac.tar.gz
external_llvm-58ccf8dee03d7cf79468a774979ad065c5f945ac.tar.bz2
MachineFunction no longer needs Annotation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77704 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r--include/llvm/CodeGen/MachineFunction.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h
index b306583..13e223f 100644
--- a/include/llvm/CodeGen/MachineFunction.h
+++ b/include/llvm/CodeGen/MachineFunction.h
@@ -21,7 +21,6 @@
#include "llvm/ADT/ilist.h"
#include "llvm/Support/DebugLoc.h"
#include "llvm/CodeGen/MachineBasicBlock.h"
-#include "llvm/Support/Annotation.h"
#include "llvm/Support/Allocator.h"
#include "llvm/Support/Recycler.h"
@@ -66,7 +65,7 @@ struct MachineFunctionInfo {
virtual ~MachineFunctionInfo() {}
};
-class MachineFunction : private Annotation {
+class MachineFunction {
Function *Fn;
const TargetMachine &Target;