initialize isstore/isload fields in ctor, fixing PR1695
authorChris Lattner <sabre@nondot.org>
Sat, 22 Sep 2007 07:02:12 +0000 (07:02 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 22 Sep 2007 07:02:12 +0000 (07:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42222 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/ScheduleDAGSimple.cpp

index f12e285416c80a4d27c7c158d40fb3347333a4de..6014fe9453f379e8ecbb2e95bf4d5171a1f6a0d1 100644 (file)
@@ -125,6 +125,8 @@ public:
     , StageEnd(NULL)
     , Latency(0)
     , IsCall(false)
+    , IsLoad(false)
+    , IsStore(false)
     , Slot(0)
     , Group(NULL)
 #ifndef NDEBUG