llvm-6502/lib
Evan Cheng cdf43b1fad If a loop termination compare instruction is the only use of its stride,
and the compaison is against a constant value, try eliminate the stride
by moving the compare instruction to another stride and change its
constant operand accordingly. e.g.

loop:
...
v1 = v1 + 3
v2 = v2 + 1
if (v2 < 10) goto loop
=>
loop:
...
v1 = v1 + 3
if (v1 < 30) goto loop


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43336 91177308-0d34-0410-b5e6-96231b3b80d8
2007-10-25 09:11:16 +00:00
..
Analysis Fix for PR1741. 2007-10-25 02:36:18 +00:00
Archive
AsmParser
Bitcode Implemented prototype serialization of pointers, including support 2007-10-25 00:10:21 +00:00
CodeGen
Debugger
ExecutionEngine
Linker
Support
System
Target
Transforms If a loop termination compare instruction is the only use of its stride, 2007-10-25 09:11:16 +00:00
VMCore
Makefile