| 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,
|
|
|