aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-08-09 23:55:17 +0000
committerChris Lattner <sabre@nondot.org>2007-08-09 23:55:17 +0000
commitb31e91cb16885922efd6baca751c0991960dd817 (patch)
treeccf5dfa6a7397e51c59d05f9e5fb93787f173ccf /lib
parenta86e347f020eaab943546635972be3ed5009cd10 (diff)
downloadexternal_llvm-b31e91cb16885922efd6baca751c0991960dd817.zip
external_llvm-b31e91cb16885922efd6baca751c0991960dd817.tar.gz
external_llvm-b31e91cb16885922efd6baca751c0991960dd817.tar.bz2
unbreak the build
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40976 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/SimpleRegisterCoalescing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SimpleRegisterCoalescing.cpp b/lib/CodeGen/SimpleRegisterCoalescing.cpp
index 0b3d178..650073b 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;
}