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

Unified Diff: src/IceTargetLoweringX8632.cpp

Issue 682983004: Subzero: Decorate the text asm output with register availability info. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Refactor LiveIn/LiveOut printing into a common routine Created 6 years, 2 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/IceTargetLoweringX8632.cpp
diff --git a/src/IceTargetLoweringX8632.cpp b/src/IceTargetLoweringX8632.cpp
index df7d04f591fb487293b29f8d21352219ce5112a5..43d72617a548c867b12503046a44731c22c624e1 100644
--- a/src/IceTargetLoweringX8632.cpp
+++ b/src/IceTargetLoweringX8632.cpp
@@ -392,7 +392,6 @@ void TargetX8632::translateO2() {
return;
Func->dump("After stack frame mapping");
- Func->deleteRedundantAssignments();
Func->contractEmptyNodes();
Func->reorderNodes();
@@ -435,8 +434,6 @@ void TargetX8632::translateOm1() {
return;
Func->dump("After stack frame mapping");
- Func->deleteRedundantAssignments();
-
// Nop insertion
if (shouldDoNopInsertion()) {
Func->doNopInsertion();

Powered by Google App Engine
This is Rietveld 408576698