Initialize the SSARegMap.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4782 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2002-11-20 18:55:27 +00:00
parent 282ec57c4c
commit b7825bc725

View File

@ -102,6 +102,7 @@ MachineFunction::MachineFunction(const Function *F,
currentTmpValuesSize(0), maxTmpValuesSize(0), compiledAsLeaf(false),
spillsAreaFrozen(false), automaticVarsAreaFrozen(false)
{
SSARegMapping = new SSARegMap();
}
void MachineFunction::dump() const { print(std::cerr); }