From: Chris Lattner Date: Mon, 25 Oct 2004 18:45:16 +0000 (+0000) Subject: Fix compatibility with MSVC, patch by Morten Ofstad X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=13a166525c97b1e070661b820e660d5f20a11e31;p=oota-llvm.git Fix compatibility with MSVC, patch by Morten Ofstad git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17218 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/PRE.cpp b/lib/Transforms/Scalar/PRE.cpp index f8752336b2e..15884b6c761 100644 --- a/lib/Transforms/Scalar/PRE.cpp +++ b/lib/Transforms/Scalar/PRE.cpp @@ -34,6 +34,7 @@ #include "llvm/ADT/PostOrderIterator.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/hash_set" +#include "llvm/ADT/hash_map" using namespace llvm; namespace {