diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2002-11-20 18:55:27 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2002-11-20 18:55:27 +0000 |
commit | b7825bc72534573c444e646dd1c3999ff787bbad (patch) | |
tree | ab2395cc50f042bdcac2d8345d0bcfcf442d74a5 /lib/CodeGen/MachineFunction.cpp | |
parent | 282ec57c4cdd4574103922487b6f1563b5034fb4 (diff) |
Initialize the SSARegMap.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4782 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | lib/CodeGen/MachineFunction.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 3dcbabc2a6..d9ea15a6f5 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); } |