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
This commit is contained in:
Dale Johannesen 2010-04-17 00:08:21 +00:00
parent 7e3e3252a1
commit ab89ff7841

View File

@ -16,9 +16,9 @@
#include <cassert>
#include <climits>
#include <map>
#include <vector>
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/ValueMap.h"
namespace llvm {
@ -165,7 +165,7 @@ namespace llvm {
void analyzeFunction(Function *F);
};
std::map<const Function *, FunctionInfo> CachedFunctionInfo;
ValueMap<const Function *, FunctionInfo> CachedFunctionInfo;
public: