mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-14 15:25:25 +00:00
add a note
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30271 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -628,3 +628,17 @@ _test:
|
|||||||
|
|
||||||
This saves a movzbl, and saves a truncate if it doesn't get coallesced right.
|
This saves a movzbl, and saves a truncate if it doesn't get coallesced right.
|
||||||
This is a simple DAGCombine to propagate the zext through the and.
|
This is a simple DAGCombine to propagate the zext through the and.
|
||||||
|
|
||||||
|
//===---------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
Instead of:
|
||||||
|
|
||||||
|
cmpl $4294967295, %edx
|
||||||
|
jg LBB1_8 #cond_false49
|
||||||
|
|
||||||
|
emit:
|
||||||
|
|
||||||
|
testl %edx, %edx
|
||||||
|
js LBB1_8
|
||||||
|
|
||||||
|
This saves a byte of code space.
|
||||||
|
Reference in New Issue
Block a user