aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-04-16 19:28:59 +0000
committerDuncan Sands <baldrick@free.fr>2010-04-16 19:28:59 +0000
commitf72a53db4453a45aca282bd13c1f2dbe40a08466 (patch)
tree698b8a9b8eb0d2e4103357aaca450451f0e80a15 /include/llvm/Analysis
parentd73d187e335c251892eab74fe436ddd701865287 (diff)
downloadexternal_llvm-f72a53db4453a45aca282bd13c1f2dbe40a08466.zip
external_llvm-f72a53db4453a45aca282bd13c1f2dbe40a08466.tar.gz
external_llvm-f72a53db4453a45aca282bd13c1f2dbe40a08466.tar.bz2
Revert commit 101503 (johannes), in the hope of fixing the dragonegg build,
see http://google1.osuosl.org:8011/builders/dragonegg-x86_64-linux/builds/693 Original commit text: Use a ValueMap not a std::map for the reason indicated in the comment. This was causing nondeterministic changes in inlining decisions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101525 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/InlineCost.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/llvm/Analysis/InlineCost.h b/include/llvm/Analysis/InlineCost.h
index ab0b845..ea913bd 100644
--- a/include/llvm/Analysis/InlineCost.h
+++ b/include/llvm/Analysis/InlineCost.h
@@ -18,7 +18,6 @@
#include <climits>
#include <vector>
#include "llvm/ADT/DenseMap.h"
-#include "llvm/ADT/ValueMap.h"
namespace llvm {
@@ -165,9 +164,7 @@ namespace llvm {
void analyzeFunction(Function *F);
};
- // The Function* for a function can be changed (by ArgumentPromotion);
- // the ValueMap will update itself when this happens.
- ValueMap<const Function *, FunctionInfo> CachedFunctionInfo;
+ std::map<const Function *, FunctionInfo> CachedFunctionInfo;
public: