aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/CodeGen/VirtRegMap.cpp
diff options
context:
space:
mode:
authorAkshay Khadse <akshayskhadse@gmail.com>2023-04-17 16:16:23 +0800
committerLuo, Yuanke <yuanke.luo@intel.com>2023-04-17 16:32:46 +0800
commit8bf7f86d7966ff835967669fb6bf23897e20b71d (patch)
treeac732355d5e16c7444bcf1a20c59ed65bcdab7c2 /llvm/lib/CodeGen/VirtRegMap.cpp
parent83ab5708d1d00f4ec2541e960bff3b5c68001c9e (diff)
downloadllvm-8bf7f86d7966ff835967669fb6bf23897e20b71d.zip
llvm-8bf7f86d7966ff835967669fb6bf23897e20b71d.tar.gz
llvm-8bf7f86d7966ff835967669fb6bf23897e20b71d.tar.bz2
Fix uninitialized pointer members in CodeGen
This change initializes the members TSI, LI, DT, PSI, and ORE pointer feilds of the SelectOptimize class to nullptr. Reviewed By: LuoYuanke Differential Revision: https://reviews.llvm.org/D148303
Diffstat (limited to 'llvm/lib/CodeGen/VirtRegMap.cpp')
-rw-r--r--llvm/lib/CodeGen/VirtRegMap.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/VirtRegMap.cpp b/llvm/lib/CodeGen/VirtRegMap.cpp
index 8e00712..8021ca1 100644
--- a/llvm/lib/CodeGen/VirtRegMap.cpp
+++ b/llvm/lib/CodeGen/VirtRegMap.cpp
@@ -181,14 +181,14 @@ LLVM_DUMP_METHOD void VirtRegMap::dump() const {
namespace {
class VirtRegRewriter : public MachineFunctionPass {
- MachineFunction *MF;
- const TargetRegisterInfo *TRI;
- const TargetInstrInfo *TII;
- MachineRegisterInfo *MRI;
- SlotIndexes *Indexes;
- LiveIntervals *LIS;
- VirtRegMap *VRM;
- LiveDebugVariables *DebugVars;
+ MachineFunction *MF = nullptr;
+ const TargetRegisterInfo *TRI = nullptr;
+ const TargetInstrInfo *TII = nullptr;
+ MachineRegisterInfo *MRI = nullptr;
+ SlotIndexes *Indexes = nullptr;
+ LiveIntervals *LIS = nullptr;
+ VirtRegMap *VRM = nullptr;
+ LiveDebugVariables *DebugVars = nullptr;
DenseSet<Register> RewriteRegs;
bool ClearVirtRegs;