diff options
author | Chris Lattner <sabre@nondot.org> | 2007-09-22 07:02:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-09-22 07:02:12 +0000 |
commit | b690a005c10b521e294b95b35c1503b7b34671f4 (patch) | |
tree | 8d5f556cc71dbe814b9bc2b95806e030c34062f0 /lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp | |
parent | 885190418fdf8736dd1948d5533f333d7e0f4060 (diff) |
initialize isstore/isload fields in ctor, fixing PR1695
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42222 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp index f12e285416..6014fe9453 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp @@ -125,6 +125,8 @@ public: , StageEnd(NULL) , Latency(0) , IsCall(false) + , IsLoad(false) + , IsStore(false) , Slot(0) , Group(NULL) #ifndef NDEBUG |