diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-28 01:46:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-28 01:46:06 +0000 |
commit | d423fb5cbfdf9268899039ee49a0b3e09f661ca9 (patch) | |
tree | 276354395b127306bebe46b0e8ee98fa4b5cdf8c /include/llvm/Support | |
parent | f095db12372f8eb195db9dab28688155ea8591ea (diff) | |
download | external_llvm-d423fb5cbfdf9268899039ee49a0b3e09f661ca9.zip external_llvm-d423fb5cbfdf9268899039ee49a0b3e09f661ca9.tar.gz external_llvm-d423fb5cbfdf9268899039ee49a0b3e09f661ca9.tar.bz2 |
fix gcc 3.4 compatibility problem
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r-- | include/llvm/Support/InstVisitor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/InstVisitor.h b/include/llvm/Support/InstVisitor.h index 9a34edb..b3fc893 100644 --- a/include/llvm/Support/InstVisitor.h +++ b/include/llvm/Support/InstVisitor.h @@ -50,7 +50,7 @@ #ifndef LLVM_SUPPORT_INSTVISITOR_H #define LLVM_SUPPORT_INSTVISITOR_H -#include "llvm/Instruction.h" +#include "llvm/Function.h" namespace llvm { |