Rearrange the comments, control flow, and variable names; no
authorChandler Carruth <chandlerc@gmail.com>
Fri, 30 Nov 2012 09:26:25 +0000 (09:26 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Fri, 30 Nov 2012 09:26:25 +0000 (09:26 +0000)
commit06ec7211c17a4b45a943c36e0fb3d6715aa2453d
tree0e94e2169c89c4b65ed0c48ae3e2d99b01d7dbc2
parent67587f462e746e538322fbf7929b8db5de25ced7
Rearrange the comments, control flow, and variable names; no
functionality changed.

Evan's commit r168970 moved the code that the primary comment in this
function referred to to the other end of the function without moving the
comment, and there has been a steady creep of "boolean" logic in it that
is simpler if handled via early exit. That way each special case can
have its own comments. I've also made the variable name a bit more
explanatory than "AllFit". This is in preparation to fix the
non-deterministic output of this function.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168988 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Transforms/Utils/SimplifyCFG.cpp