expand note.

llvm-svn: 45393
This commit is contained in:
Chris Lattner 2007-12-29 01:05:01 +00:00
parent e96658392d
commit 7cafd92aa9
1 changed files with 4 additions and 0 deletions

View File

@ -512,6 +512,10 @@ better to sink the picbase computation down into the block for the
assertion, as it is the only one that uses it. This happens for a lot of
code with early outs.
Another example is loads of arguments, which are usually emitted into the
entry block on targets like x86. If not used in all paths through a
function, they should be sunk into the ones that do.
In this case, whole-function-isel would also handle this.
//===---------------------------------------------------------------------===//