Remove working entry from README.

llvm-svn: 129654
This commit is contained in:
Eli Friedman 2011-04-17 02:36:27 +00:00
parent fba7ca63cc
commit 55f7bf3289
2 changed files with 1 additions and 9 deletions

View File

@ -7,14 +7,6 @@ copy (3-addr bswap + memory support?) This is available on Atom processors.
//===---------------------------------------------------------------------===//
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) {

View File

@ -14,7 +14,7 @@ define i32 @test(i32 %a) {
ret i32 %tmp2
}
;; TODO! LEA instead of shift + copy.
; CHECK: leaq (,[[A0]],8), %rax
define i64 @test3(i64 %a) {
%tmp2 = shl i64 %a, 3
ret i64 %tmp2