From: Chris Lattner Date: Thu, 9 Aug 2007 23:55:17 +0000 (+0000) Subject: unbreak the build X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b31e91cb16885922efd6baca751c0991960dd817;p=oota-llvm.git unbreak the build git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40976 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SimpleRegisterCoalescing.cpp b/lib/CodeGen/SimpleRegisterCoalescing.cpp index 0b3d17823a2..650073b7f76 100644 --- a/lib/CodeGen/SimpleRegisterCoalescing.cpp +++ b/lib/CodeGen/SimpleRegisterCoalescing.cpp @@ -645,7 +645,7 @@ bool SimpleRegisterCoalescing::JoinIntervals(LiveInterval &LHS, LiveInterval &RH // Otherwise, use the specified value #. LHSValNoAssignments[VN] = RHSValID; if (VN != (unsigned)RHSValID) - ValueNumberInfo[VN]->def = ~1U; // Now this val# is dead. + ValueNumberInfo[VN].def = ~1U; // Now this val# is dead. else ValueNumberInfo[VN] = RHSValNoInfo; }