mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 04:00:25 +08:00
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:
parent
f50e5fcc32
commit
2166d2a1a0
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user