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

Unified Diff: src/IceCfg.cpp

Issue 1803403002: Subzero. Flags refactoring. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: git pull Created 4 years, 9 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/IceCfg.cpp
diff --git a/src/IceCfg.cpp b/src/IceCfg.cpp
index e5d8cc427cb9fbbfeaa59cce44fb850187f9c807..e97eebfb8856037e04b3675d67dae4723ab975ec 100644
--- a/src/IceCfg.cpp
+++ b/src/IceCfg.cpp
@@ -441,7 +441,7 @@ void getRandomPostOrder(CfgNode *Node, BitVector &ToVisit,
} // end of anonymous namespace
void Cfg::shuffleNodes() {
- if (!Ctx->getFlags().shouldReorderBasicBlocks())
+ if (!Ctx->getFlags().getReorderBasicBlocks())
return;
NodeList ReversedReachable;
@@ -764,7 +764,7 @@ void Cfg::doAddressOpt() {
}
void Cfg::doNopInsertion() {
- if (!Ctx->getFlags().shouldDoNopInsertion())
+ if (!Ctx->getFlags().getShouldDoNopInsertion())
return;
TimerMarker T(TimerStack::TT_doNopInsertion, this);
RandomNumberGenerator RNG(Ctx->getFlags().getRandomSeed(), RPE_NopInsertion,
« no previous file with comments | « src/IceBrowserCompileServer.cpp ('k') | src/IceClFlags.h » ('j') | src/IceClFlags.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698