mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
add a note
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27076 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
43fbbc36dc
commit
e6cd96d467
@ -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.
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user