add a note
authorChris Lattner <sabre@nondot.org>
Wed, 28 Mar 2007 18:17:19 +0000 (18:17 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 28 Mar 2007 18:17:19 +0000 (18:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35435 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/README.txt

index 72965d0759c28db1d348ab173ac3998d13608946..0bf8c4f8b4d3412447906dc35d6e9abff3c5d76e 100644 (file)
@@ -23,6 +23,14 @@ generic code.
 
 //===---------------------------------------------------------------------===//
 
+CodeGen/X86/lea-3.ll:test3 should be a single LEA, not a shift/move.  The X86
+backend knows how to three-addressify this shift, but it appears the register
+allocator isn't even asking it to do so in this case.  We should investigate
+why this isn't happening, it could have significant impact on other important
+cases for X86 as well.
+
+//===---------------------------------------------------------------------===//
+
 This should be one DIV/IDIV instruction, not a libcall:
 
 unsigned test(unsigned long long X, unsigned Y) {