From: Misha Brukman Date: Wed, 20 Nov 2002 18:55:27 +0000 (+0000) Subject: Initialize the SSARegMap. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b7825bc72534573c444e646dd1c3999ff787bbad;p=oota-llvm.git Initialize the SSARegMap. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4782 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 3dcbabc2a68..d9ea15a6f5a 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/lib/CodeGen/MachineFunction.cpp @@ -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); }