From ab89ff78419cf0dfa6360c7b142b9fb1490866b7 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Sat, 17 Apr 2010 00:08:21 +0000 Subject: [PATCH] Reapply 101503+101520. These are "obviously correct" [Chris] and don't cause any problems on Darwin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101584 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/InlineCost.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Analysis/InlineCost.h b/include/llvm/Analysis/InlineCost.h index 066b9439689..ff1f62b3b63 100644 --- a/include/llvm/Analysis/InlineCost.h +++ b/include/llvm/Analysis/InlineCost.h @@ -16,9 +16,9 @@ #include #include -#include #include #include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/ValueMap.h" namespace llvm { @@ -165,7 +165,7 @@ namespace llvm { void analyzeFunction(Function *F); }; - std::map CachedFunctionInfo; + ValueMap CachedFunctionInfo; public: