[llvm] r279836 - Missed a semicolon in r279835
Krzysztof Parzyszek via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 26 09:50:58 PDT 2016
Author: kparzysz
Date: Fri Aug 26 11:50:57 2016
New Revision: 279836
URL: http://llvm.org/viewvc/llvm-project?rev=279836&view=rev
Log:
Missed a semicolon in r279835
Modified:
llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp
Modified: llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp?rev=279836&r1=279835&r2=279836&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp (original)
+++ llvm/trunk/lib/CodeGen/RegisterCoalescer.cpp Fri Aug 26 11:50:57 2016
@@ -2840,7 +2840,7 @@ bool RegisterCoalescer::joinVirtRegs(Coa
// Recompute the parts of the live range we had to remove because of
// CR_Replace conflicts.
DEBUG({
- dbgs() << "\t\trestoring liveness to " << EndPoints.size() << " points: "
+ dbgs() << "\t\trestoring liveness to " << EndPoints.size() << " points: ";
for (unsigned i = 0, n = EndPoints.size(); i != n; ++i) {
dbgs() << EndPoints[i];
if (i != n-1)
More information about the llvm-commits
mailing list