1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

add a note

llvm-svn: 27076
This commit is contained in:
Chris Lattner 2006-03-24 19:59:17 +00:00
parent 522211a435
commit 045f6bf0ef

View File

@ -138,3 +138,15 @@ And teach the dag combiner enough to simplify the code expanded before
legalize. It seems plausible that this knowledge would let it simplify other
stuff too.
//===---------------------------------------------------------------------===//
The loop unroller should be enhanced to be able to unroll loops that aren't
single basic blocks. It should be able to handle stuff like this:
for (i = 0; i < c1; ++i)
if (c2 & (1 << i))
foo
where c1/c2 are constants.