Remove some stuff from the README
authorNate Begeman <natebegeman@mac.com>
Tue, 2 May 2006 22:43:31 +0000 (22:43 +0000)
committerNate Begeman <natebegeman@mac.com>
Tue, 2 May 2006 22:43:31 +0000 (22:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28063 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/README.txt

index c3bcfffd09a6587a8d23d15b0afd8015f84f2cf8..b8ec59ae3642f18b09021fc9391462e748c1211f 100644 (file)
@@ -1126,27 +1126,6 @@ Don't know if unpckhpd is faster. But it is shorter.
 
 //===---------------------------------------------------------------------===//
 
-typedef short  v8i16 __attribute__ ((__vector_size__ (16)));
-v8i16 test(v8i16 x, v8i16 y) {
-  return x + y;
-}
-
-compiles to
-
-_test:
-       paddw %xmm0, %xmm1
-       movaps %xmm1, %xmm0
-       ret
-
-It should be
-
-       paddw %xmm1, %xmm0
-       ret
-
-since paddw is commutative.
-
-//===---------------------------------------------------------------------===//
-
 This testcase:
 
 %G1 = weak global <4 x float> zeroinitializer           ; <<4 x float>*> [#uses=1]