diff options
Diffstat (limited to 'src/relooper/Relooper.cpp')
-rw-r--r-- | src/relooper/Relooper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/relooper/Relooper.cpp b/src/relooper/Relooper.cpp index ca9c6ab1..a457914b 100644 --- a/src/relooper/Relooper.cpp +++ b/src/relooper/Relooper.cpp @@ -180,7 +180,7 @@ void Block::Render(bool InLoop) { Block *DefaultTarget(NULL); // The block we branch to without checking the condition, if none of the other conditions held. - // We must do this here, because blocks can be split and even comparing their Ids is not enough. We must check the conditions. + // Find the default target, the one without a condition for (BlockBranchMap::iterator iter = ProcessedBranchesOut.begin(); iter != ProcessedBranchesOut.end(); iter++) { if (!iter->second->Condition) { assert(!DefaultTarget); // Must be exactly one default |