From: Jakob Stoklund Olesen Date: Thu, 31 Mar 2011 15:14:11 +0000 (+0000) Subject: Fix bug found by valgrind. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=314a3ef502c67e9be7a67c9be7ea3ecffce8298b;p=oota-llvm.git Fix bug found by valgrind. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128634 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LiveIntervalUnion.h b/lib/CodeGen/LiveIntervalUnion.h index 4ae2667307f..0964ecd07a8 100644 --- a/lib/CodeGen/LiveIntervalUnion.h +++ b/lib/CodeGen/LiveIntervalUnion.h @@ -166,7 +166,7 @@ public: unsigned Tag, UserTag; public: - Query(): LiveUnion(), VirtReg() {} + Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {} Query(LiveInterval *VReg, LiveIntervalUnion *LIU): LiveUnion(LIU), VirtReg(VReg), CheckedFirstInterference(false),