This is done.
authorEvan Cheng <evan.cheng@apple.com>
Thu, 8 Feb 2007 23:53:38 +0000 (23:53 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Thu, 8 Feb 2007 23:53:38 +0000 (23:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34072 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/README.txt

index fe63e9e7dc81b5b264fd7f6782ca260298606cdf..46ef8b2225063338695478891935865c12560d24 100644 (file)
@@ -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) {