1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Add a entry.

llvm-svn: 26173
This commit is contained in:
Evan Cheng 2006-02-14 08:25:32 +00:00
parent 80812d1070
commit 030631350f

View File

@ -426,3 +426,20 @@ When: "movl $_dst, _ptr" is sufficient.
//===---------------------------------------------------------------------===//
Use fisttp to do FP to integer conversion whenever it is available.
//===---------------------------------------------------------------------===//
Instead of the following for memset char*, 1, 10:
movl $16843009, 4(%edx)
movl $16843009, (%edx)
movw $257, 8(%edx)
It might be better to generate
movl $16843009, %eax
movl %eax, 4(%edx)
movl %eax, (%edx)
movw al, 8(%edx)
when we can spare a register. It reduces code size.