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@101503 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dale Johannesen 2010-04-16 18:16:08 +00:00
parent 53f6ed9560
commit d4ed2a8636

View File

@ -19,6 +19,7 @@
#include <map>
#include <vector>
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/ValueMap.h"
namespace llvm {
@ -165,7 +166,9 @@ namespace llvm {
void analyzeFunction(Function *F);
};
std::map<const Function *, FunctionInfo> CachedFunctionInfo;
// The Function* for a function can be changed (by ArgumentPromotion);
// the ValueMap will update itself when this happens.
ValueMap<const Function *, FunctionInfo> CachedFunctionInfo;
public: