From f76bb635554d0dfa6129942e153dff3c30c464bb Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Thu, 8 Feb 2007 23:53:38 +0000 Subject: [PATCH] This is done. llvm-svn: 34072 --- llvm/lib/Target/X86/README.txt | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/llvm/lib/Target/X86/README.txt b/llvm/lib/Target/X86/README.txt index fe63e9e7dc81..46ef8b222506 100644 --- a/llvm/lib/Target/X86/README.txt +++ b/llvm/lib/Target/X86/README.txt @@ -665,20 +665,6 @@ The add\sub pair is really unneeded here. //===---------------------------------------------------------------------===// -We generate really bad code in some cases due to lowering SETCC/SELECT at -legalize time, which prevents the post-legalize dag combine pass from -understanding the code. As a silly example, this prevents us from folding -stuff like this: - -bool %test(ulong %x) { - %tmp = setlt ulong %x, 4294967296 - ret bool %tmp -} - -into x.h == 0 - -//===---------------------------------------------------------------------===// - We currently compile sign_extend_inreg into two shifts: long foo(long X) {