From 7d49f59f4fab6f5c5b46c11fe7726f8cd69399e1 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 5 Jun 1996 13:45:36 -0400 Subject: [PATCH] (*call_{address,symbolic}_struct_value_sp32): Allow operand 2 to be const0_rtx. From-SVN: r12164 --- gcc/config/sparc/sparc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index b72f6051b47..f5a612ebdd5 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -5185,7 +5185,7 @@ (match_operand 2 "immediate_operand" "") (clobber (reg:SI 15))] ;;- Do not use operand 1 for most machines. - "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) > 0" + "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 0" "call %a0,%1\;nop\;unimp %2" [(set_attr "type" "call_no_delay_slot")]) @@ -5197,7 +5197,7 @@ (match_operand 2 "immediate_operand" "") (clobber (reg:SI 15))] ;;- Do not use operand 1 for most machines. - "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) > 0" + "! TARGET_ARCH64 && GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 0" "call %a0,%1\;nop\;unimp %2" [(set_attr "type" "call_no_delay_slot")]) -- 2.30.2