From: Evan Cheng Date: Mon, 10 Apr 2006 21:42:57 +0000 (+0000) Subject: Remove an entry that is now done. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c6d5ba6521ed5dfb1878dbd4f10c9dfe122cca09;p=oota-llvm.git Remove an entry that is now done. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27565 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/README.txt b/lib/Target/X86/README.txt index 3b58c80dcd5..9db0cef4bd4 100644 --- a/lib/Target/X86/README.txt +++ b/lib/Target/X86/README.txt @@ -768,19 +768,6 @@ http://llvm.org/bugs/show_bug.cgi?id=729 //===---------------------------------------------------------------------===// -#include - -void test(__m128 *res, __m128 *A, __m128 *B) { - *res = _mm_shuffle_ps(*A, *B, 0xF0); -} - -We should emit - shufps $240, (%eax), %xmm0 -instead of - pshufd $240, (%eax), %xmm0 - -//===---------------------------------------------------------------------===// - X86RegisterInfo::copyRegToReg() returns X86::MOVAPSrr for VR128. Is it possible to choose between movaps, movapd, and movdqa based on types of source and destination?