diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-15 15:59:32 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-15 15:59:39 -0700 |
commit | 839fa8a9359cd7b383555e57da2a7e3000dabe75 (patch) | |
tree | 01dfc282db823f5c6854ed8deaf96cca7159b4a8 | |
parent | e4d792711463c355c5e191726cbb6be691e50a60 (diff) |
update relooper comment
-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 |