diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-29 19:27:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-29 19:27:55 +0000 |
commit | 61f57fae7ae357e818b30974455b6dbbf058b632 (patch) | |
tree | ad52a84c67eb184324fabdad1ff6a1e7caa81fc1 /include | |
parent | a523cdf1b6731982019f0bd548edc0d6e5264e5f (diff) | |
download | external_llvm-61f57fae7ae357e818b30974455b6dbbf058b632.zip external_llvm-61f57fae7ae357e818b30974455b6dbbf058b632.tar.gz external_llvm-61f57fae7ae357e818b30974455b6dbbf058b632.tar.bz2 |
Module does not need to be annotatable aka annotable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12005 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Module.h b/include/llvm/Module.h index bdd72e1..ec92a51 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -43,7 +43,7 @@ template<> struct ilist_traits<GlobalVariable> static iplist<GlobalVariable> &getList(Module *M); }; -struct Module : public Annotable { +struct Module { typedef iplist<GlobalVariable> GlobalListType; typedef iplist<Function> FunctionListType; |