From: Jakub Jelinek Date: Mon, 11 Feb 2019 10:39:59 +0000 (+0100) Subject: re PR bootstrap/88714 (bootstrap comparison failure on armv7l since r265398) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=85fef82fc17b597db4943c42fe9ce6f159232de9;p=gcc.git re PR bootstrap/88714 (bootstrap comparison failure on armv7l since r265398) PR bootstrap/88714 * config/arm/ldrdstrd.md (*arm_ldrd, *arm_strd): Use q constraint instead of r. From-SVN: r268766 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a4cc46a5fc8..1fa6936f386 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2019-02-11 Jakub Jelinek + + PR bootstrap/88714 + * config/arm/ldrdstrd.md (*arm_ldrd, *arm_strd): Use q constraint + instead of r. + 2019-02-11 Hans-Peter Nilsson * function.c (assign_parm_setup_block): Use the stored diff --git a/gcc/config/arm/ldrdstrd.md b/gcc/config/arm/ldrdstrd.md index cb7a6adebbc..c937591ad40 100644 --- a/gcc/config/arm/ldrdstrd.md +++ b/gcc/config/arm/ldrdstrd.md @@ -157,9 +157,9 @@ ;; We use gen_operands_ldrd_strd() with a modify argument as false so that the ;; operands are not changed. (define_insn "*arm_ldrd" - [(parallel [(set (match_operand:SI 0 "s_register_operand" "=r") + [(parallel [(set (match_operand:SI 0 "s_register_operand" "=q") (match_operand:SI 2 "memory_operand" "m")) - (set (match_operand:SI 1 "s_register_operand" "=r") + (set (match_operand:SI 1 "s_register_operand" "=q") (match_operand:SI 3 "memory_operand" "m"))])] "TARGET_LDRD && TARGET_ARM && reload_completed && valid_operands_ldrd_strd (operands, true)" @@ -178,9 +178,9 @@ (define_insn "*arm_strd" [(parallel [(set (match_operand:SI 2 "memory_operand" "=m") - (match_operand:SI 0 "s_register_operand" "r")) + (match_operand:SI 0 "s_register_operand" "q")) (set (match_operand:SI 3 "memory_operand" "=m") - (match_operand:SI 1 "s_register_operand" "r"))])] + (match_operand:SI 1 "s_register_operand" "q"))])] "TARGET_LDRD && TARGET_ARM && reload_completed && valid_operands_ldrd_strd (operands, false)" {