mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
add a note
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34837 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a505fb6d9f
commit
9b6f57c303
@ -920,3 +920,25 @@ LBB1_1:
|
||||
Though this probably isn't worth it.
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
||||
We need to teach the codegen to convert two-address INC instructions to LEA
|
||||
when the flags are dead. For example, on X86-64, compile:
|
||||
|
||||
int foo(int A, int B) {
|
||||
return A+1;
|
||||
}
|
||||
|
||||
to:
|
||||
|
||||
_foo:
|
||||
leal 1(%edi), %eax
|
||||
ret
|
||||
|
||||
instead of:
|
||||
|
||||
_foo:
|
||||
incl %edi
|
||||
movl %edi, %eax
|
||||
ret
|
||||
|
||||
//===---------------------------------------------------------------------===//
|
||||
|
Loading…
x
Reference in New Issue
Block a user