From: Richard Earnshaw Date: Sun, 22 Jun 2003 13:54:38 +0000 (+0000) Subject: arm.md (all call_value patterns): Remove register constraints on value operand. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=24391720e3ed72d821ab1d716bbd99bae809ad83;p=gcc.git arm.md (all call_value patterns): Remove register constraints on value operand. * arm.md (all call_value patterns): Remove register constraints on value operand. From-SVN: r68329 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 540c6b72814..4e5196fab91 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-06-22 Richard Earnshaw + + * arm.md (all call_value patterns): Remove register constraints on + value operand. + 2003-06-22 Neil Booth * common.opt: More -f switches. diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index b3456c03031..339763ad627 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -6012,7 +6012,7 @@ ) (define_insn "*call_value_indirect" - [(set (match_operand 0 "" "=l") + [(set (match_operand 0 "" "") (call (mem:SI (match_operand:SI 1 "register_operand" "l*r")) (match_operand 2 "" ""))) (use (match_operand 3 "" "")) @@ -6051,7 +6051,7 @@ ) (define_insn "*call_value_reg" - [(set (match_operand 0 "" "=ryfv") + [(set (match_operand 0 "" "") (call (mem:SI (match_operand:SI 1 "s_register_operand" "r")) (match_operand 2 "" ""))) (use (match_operand 3 "" "")) @@ -6065,7 +6065,7 @@ ) (define_insn "*call_value_mem" - [(set (match_operand 0 "" "=ryfv") + [(set (match_operand 0 "" "") (call (mem:SI (match_operand:SI 1 "memory_operand" "m")) (match_operand 2 "" ""))) (use (match_operand 3 "" "")) @@ -6082,7 +6082,7 @@ ;; The 'a' causes the operand to be treated as an address, i.e. no '#' output. (define_insn "*call_symbol" - [(call (mem:SI (match_operand:SI 0 "" "X")) + [(call (mem:SI (match_operand:SI 0 "" "")) (match_operand 1 "" "")) (use (match_operand 2 "" "")) (clobber (reg:SI LR_REGNUM))] @@ -6097,8 +6097,8 @@ ) (define_insn "*call_value_symbol" - [(set (match_operand 0 "s_register_operand" "=ryfv") - (call (mem:SI (match_operand:SI 1 "" "X")) + [(set (match_operand 0 "s_register_operand" "") + (call (mem:SI (match_operand:SI 1 "" "")) (match_operand:SI 2 "" ""))) (use (match_operand 3 "" "")) (clobber (reg:SI LR_REGNUM))] @@ -6113,7 +6113,7 @@ ) (define_insn "*call_insn" - [(call (mem:SI (match_operand:SI 0 "" "X")) + [(call (mem:SI (match_operand:SI 0 "" "")) (match_operand:SI 1 "" "")) (use (match_operand 2 "" "")) (clobber (reg:SI LR_REGNUM))] @@ -6126,8 +6126,8 @@ ) (define_insn "*call_value_insn" - [(set (match_operand 0 "register_operand" "=l") - (call (mem:SI (match_operand 1 "" "X")) + [(set (match_operand 0 "register_operand" "") + (call (mem:SI (match_operand 1 "" "")) (match_operand 2 "" ""))) (use (match_operand 3 "" "")) (clobber (reg:SI LR_REGNUM))] @@ -6180,7 +6180,7 @@ ) (define_insn "*sibcall_value_insn" - [(set (match_operand 0 "s_register_operand" "=ryfv") + [(set (match_operand 0 "s_register_operand" "") (call (mem:SI (match_operand:SI 1 "" "X")) (match_operand 2 "" ""))) (return)