Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: src/IceOperand.cpp

Issue 1312433004: Weight variables by their number of uses for register allocation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/IceOperand.cpp
diff --git a/src/IceOperand.cpp b/src/IceOperand.cpp
index e46fac03d9387604f3d1a0fea6fc48bb37c49713..00b9c1d305b7d62bd6827b54210f596aafb2298b 100644
--- a/src/IceOperand.cpp
+++ b/src/IceOperand.cpp
@@ -466,7 +466,6 @@ void ConstantUndef::emit(TargetLowering *Target) const { Target->emit(this); }
void LiveRange::dump(Ostream &Str) const {
if (!BuildDefs::dump())
return;
- Str << "(weight=" << Weight << ") ";
bool First = true;
for (const RangeElementType &I : Range) {
if (!First)

Powered by Google App Engine
This is Rietveld 408576698