A new entry
authorEvan Cheng <evan.cheng@apple.com>
Fri, 24 Mar 2006 02:57:03 +0000 (02:57 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Fri, 24 Mar 2006 02:57:03 +0000 (02:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27039 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/README.txt

index 4972818dbf5128dfdbff11ec4d311cc909aa081b..1c227d3fd140aa657a8e1fc9cf61c611bf81bd2b 100644 (file)
@@ -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 /
 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.