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

Unified Diff: src/IceCfg.cpp

Issue 1847423003: Replace constant conditional branches by unconditional branches (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review fixes Created 4 years, 8 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.h » ('j') | src/IceCfgNode.cpp » ('J')
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 2d16734eab18b9cea1761e5705670314bff69451..79dfd767540433f04897a62e221789517c1c55c4 100644
--- a/src/IceCfg.cpp
+++ b/src/IceCfg.cpp
@@ -283,7 +283,7 @@ void Cfg::computeInOutEdges() {
TimerMarker T(TimerStack::TT_phiValidation, this);
for (CfgNode *Node : Nodes)
- Node->validatePhis();
+ Node->enforcePhiConsistency();
}
void Cfg::renumberInstructions() {
« no previous file with comments | « no previous file | src/IceCfgNode.h » ('j') | src/IceCfgNode.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698