summaryrefslogtreecommitdiffstats
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
commit2b9fe84b078150a49e91a787b5b3356c29fdb0d2 (patch)
tree197df127360cf5ba51a4e1d394c06c94b9296533
parent1115a2b412794afab11a989eec788276a92c0846 (diff)
downloadbcm5719-llvm-2b9fe84b078150a49e91a787b5b3356c29fdb0d2.tar.gz
bcm5719-llvm-2b9fe84b078150a49e91a787b5b3356c29fdb0d2.zip
unbreak the build
llvm-svn: 40976
-rw-r--r--llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp b/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp
index 0b3d17823a2..650073b7f76 100644
--- a/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp
+++ b/llvm/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;
}
OpenPOWER on IntegriCloud