diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-02-08 23:53:38 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-02-08 23:53:38 +0000 |
commit | 6a9a76508c778f02ad3ed0d6a48c59b27d759925 (patch) | |
tree | 43154f04d68d8d7b83e77434caabded20f0ef23e | |
parent | 1cbd3336182b1cbe50d4d5d012b0a4a257f1396d (diff) |
This is done.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34072 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/README.txt | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/Target/X86/README.txt b/lib/Target/X86/README.txt index fe63e9e7dc..46ef8b2225 100644 --- a/lib/Target/X86/README.txt +++ b/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) { |