aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2010-01-15 17:54:23 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2010-01-15 17:54:23 +0000
commita1b5171bd855ce7b986eb48a91092eb41c37810e (patch)
treeecf2d7f1c9f370be88a90b55aa3ca4a91a1f0e5e
parent306c7b5be93eded6fcbb1e86ffffb8d51ded11b8 (diff)
downloadgcc-a1b5171bd855ce7b986eb48a91092eb41c37810e.zip
gcc-a1b5171bd855ce7b986eb48a91092eb41c37810e.tar.gz
gcc-a1b5171bd855ce7b986eb48a91092eb41c37810e.tar.bz2
* config/i386/sse.md (avx_vperm2f128<mode>3): Fix typo.
From-SVN: r155943
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/i386/sse.md2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index a13093e..80151a7 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-15 Eric Botcazou <ebotcazou@adacore.com>
+
+ * config/i386/sse.md (avx_vperm2f128<mode>3): Fix typo.
+
2010-01-15 Richard Guenther <rguenther@suse.de>
PR middle-end/42739
diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md
index 54befb4..50b1b14 100644
--- a/gcc/config/i386/sse.md
+++ b/gcc/config/i386/sse.md
@@ -11935,7 +11935,7 @@
UNSPEC_VPERMIL2F128))]
"TARGET_AVX"
{
- int mask = INTVAL (operands[2]);
+ int mask = INTVAL (operands[3]);
if ((mask & 0x88) == 0)
{
rtx perm[<ssescalarnum>], t1, t2;