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
This commit is contained in:
parent
dc3d2aebdc
commit
c48516f9a2
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Reference in a new issue