From: Alkis Evlogimenos Date: Thu, 6 May 2004 02:07:42 +0000 (+0000) Subject: Fix for gcc3.4: invalid use of forward delacred class on line 93 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ad5c296792e8db7afed68023909ea42f9ddcb454;p=oota-llvm.git Fix for gcc3.4: invalid use of forward delacred class on line 93 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13370 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h index 8b3a28d5f93..4af9256dcf7 100644 --- a/include/llvm/Support/InstVisitor.h +++ b/include/llvm/Support/InstVisitor.h @@ -51,11 +51,10 @@ #define LLVM_SUPPORT_INSTVISITOR_H #include "llvm/Function.h" +#include "llvm/Module.h" namespace llvm { -class Module; - // We operate on opaque instruction classes, so forward declare all instruction // types now... //