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

Unified Diff: src/IceCfg.cpp

Issue 597003004: Subzero: Automatically infer regalloc preferences and overlap. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 6 years, 3 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
« no previous file with comments | « no previous file | src/IceCfgNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.cpp
diff --git a/src/IceCfg.cpp b/src/IceCfg.cpp
index d2548a6d8f83e71025bed366879352b6228e0614..8f51f43765b138a684f9bd3054c8d14b344b42af 100644
--- a/src/IceCfg.cpp
+++ b/src/IceCfg.cpp
@@ -377,13 +377,6 @@ void Cfg::dump(const IceString &Message) {
Str << "?";
Str << " weight=" << Var->getWeight() << " ";
Var->dump(this);
- if (Variable *Pref = Var->getPreferredRegister()) {
- Str << " pref=";
- Pref->dump(this);
- if (Var->getRegisterOverlap())
- Str << ",overlap";
- Str << " ";
- }
Str << " LIVE=" << Var->getLiveRange() << "\n";
}
}
« no previous file with comments | « no previous file | src/IceCfgNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698