Remove some redundant stuff out of the readme.
authorNate Begeman <natebegeman@mac.com>
Sat, 14 Jan 2006 01:24:22 +0000 (01:24 +0000)
committerNate Begeman <natebegeman@mac.com>
Sat, 14 Jan 2006 01:24:22 +0000 (01:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25308 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/README.txt

index 1ba89aa448a827edccf110585f9fdcc15fd7ad7e..84536ef2deba2b971e8d38c8ae09c068c42fbff2 100644 (file)
@@ -219,24 +219,6 @@ should be branch free code.  LLVM is turning it into < 1 because of the RHS.
 
 ===-------------------------------------------------------------------------===
 
-For this testcase:
-int f1(int a, int b) { return (a&0xF)|(b&0xF0); }
-
-We currently emit:
-_f1:
-        rlwinm r2, r4, 0, 24, 27
-        rlwimi r2, r3, 0, 28, 31
-        or r3, r2, r2
-        blr
-
-We could emit:
-_f1:
-        rlwinm r4, r4, 0, 24, 27
-        rlwimi r3, r4, 0, 0, 27
-        blr
-
-===-------------------------------------------------------------------------===
-
 No loads or stores of the constants should be needed:
 
 struct foo { double X, Y; };