Allow misaligned volatile stores in C6X.

* config/c6x/c6x.md (movmisalign<mode>): Use MEM_P, not
	memory_operand.

From-SVN: r221732
This commit is contained in:
Bernd Schmidt 2015-03-27 13:02:39 +00:00 committed by Bernd Schmidt
parent f50e5fcc32
commit 2166d2a1a0
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2015-03-27 Bernd Schmidt <bernds@codesourcery.com>
* config/c6x/c6x.md (movmisalign<mode>): Use MEM_P, not
memory_operand.
PR target/65052
* config/c6x/constraints.md (S3): New constraint.
* config/c6x/c6x.md (real_jump): Use it.

View File

@ -775,7 +775,7 @@
UNSPEC_MISALIGNED_ACCESS))]
"TARGET_INSNS_64"
{
if (memory_operand (operands[0], <MODE>mode))
if (MEM_P (operands[0]))
{
emit_insn (gen_movmisalign<mode>_store (operands[0], operands[1]));
DONE;