From: Brian Gaeke Date: Fri, 16 Apr 2004 15:57:32 +0000 (+0000) Subject: Include for compatibility with gcc 3.0.x (the system compiler on X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c598517c24c2ee87acafd67643b9a19bda8514af;p=oota-llvm.git Include for compatibility with gcc 3.0.x (the system compiler on Debian.) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12986 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/ScalarEvolution.cpp b/lib/Analysis/ScalarEvolution.cpp index 0d880ed74a8..33a40508511 100644 --- a/lib/Analysis/ScalarEvolution.cpp +++ b/lib/Analysis/ScalarEvolution.cpp @@ -76,6 +76,7 @@ #include "llvm/Support/ConstantRange.h" #include "llvm/Support/InstIterator.h" #include "Support/Statistic.h" +#include using namespace llvm; namespace { diff --git a/lib/Transforms/Utils/Local.cpp b/lib/Transforms/Utils/Local.cpp index 29132c06809..76a22a44dd0 100644 --- a/lib/Transforms/Utils/Local.cpp +++ b/lib/Transforms/Utils/Local.cpp @@ -15,6 +15,7 @@ #include "llvm/Transforms/Utils/Local.h" #include "llvm/Constants.h" #include "llvm/Instructions.h" +#include using namespace llvm; //===----------------------------------------------------------------------===//