mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
A new entry
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27039 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -644,3 +644,14 @@ lambda, siod, optimizer-eval, ackermann, hash2, nestedloop, strcat, and Treesor.
|
|||||||
|
|
||||||
Teach the coallescer to coales vregs of different register classes. e.g. FR32 /
|
Teach the coallescer to coales vregs of different register classes. e.g. FR32 /
|
||||||
FR64 to VR128.
|
FR64 to VR128.
|
||||||
|
|
||||||
|
//===---------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
mov $reg, 48(%esp)
|
||||||
|
...
|
||||||
|
leal 48(%esp), %eax
|
||||||
|
mov %eax, (%esp)
|
||||||
|
call _foo
|
||||||
|
|
||||||
|
Obviously it would have been better for the first mov (or any op) to store
|
||||||
|
directly %esp[0] if there are no other uses.
|
||||||
|
Reference in New Issue
Block a user