diff options
author | Ilya Enkovich <enkovich.gnu@gmail.com> | 2015-12-04 14:18:58 +0000 |
---|---|---|
committer | Ilya Enkovich <ienkovich@gcc.gnu.org> | 2015-12-04 14:18:58 +0000 |
commit | c48516f9a20633303541cd28ab8125bc5724470f (patch) | |
tree | 1567a6194c9a95a43f4f7807b8acff9538607a39 | |
parent | dc3d2aebdccab3d85cfc7e2f75834817f4e440f6 (diff) | |
download | gcc-c48516f9a20633303541cd28ab8125bc5724470f.zip gcc-c48516f9a20633303541cd28ab8125bc5724470f.tar.gz gcc-c48516f9a20633303541cd28ab8125bc5724470f.tar.bz2 |
sse.md (<avx512>_store<mode>_mask): Fix operand checked for alignment.
gcc/
* config/i386/sse.md (<avx512>_store<mode>_mask): Fix
operand checked for alignment.
From-SVN: r231269
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/sse.md | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 74c8080..723aa40 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-12-04 Ilya Enkovich <enkovich.gnu@gmail.com> + + * config/i386/sse.md (<avx512>_store<mode>_mask): Fix + operand checked for alignment. + 2015-12-04 Nathan Sidwell <nathan@acm.org> * config/nvptx/nvptx.c (write_one_arg): Deal with prologue diff --git a/gcc/config/i386/sse.md b/gcc/config/i386/sse.md index 680d813..beddf40 100644 --- a/gcc/config/i386/sse.md +++ b/gcc/config/i386/sse.md @@ -1051,7 +1051,7 @@ sse_suffix = "<ssescalarsize>"; } - if (misaligned_operand (operands[1], <MODE>mode)) + if (misaligned_operand (operands[0], <MODE>mode)) align = "u"; else align = "a"; |