From f86d38047802cef0740f9732e54f8fa6be313ee3 Mon Sep 17 00:00:00 2001 From: meissner Date: Mon, 4 Mar 1996 20:06:58 +0000 Subject: [PATCH] Fix typo in last change. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11417 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config/rs6000/rs6000.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 24b6cb09569..830a637e299 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -6781,7 +6781,7 @@ (match_operand 1 "" "g,g")) (use (match_operand:SI 2 "immediate_operand" "O,n")) (clobber (match_scratch:SI 3 "=l,l"))] - "INTVAL (operands[2]) != CALL_LONG" + "(INTVAL (operands[2]) & CALL_LONG) == 0" "* { if (INTVAL (operands[2]) & CALL_V4_SET_FP_ARGS) @@ -6807,7 +6807,7 @@ (use (match_operand:SI 2 "immediate_operand" "O,n")) (clobber (match_scratch:SI 3 "=l,l"))] "(DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_NT) - && INTVAL (operands[2]) != CALL_LONG" + && (INTVAL (operands[2]) & CALL_LONG) == 0" "* { /* Indirect calls should go through call_indirect */ @@ -6830,7 +6830,7 @@ (use (match_operand:SI 2 "immediate_operand" "O,n")) (clobber (match_scratch:SI 3 "=l,l"))] "(DEFAULT_ABI == ABI_AIX_NODESC || DEFAULT_ABI == ABI_V4) - && INTVAL (operands[2]) != CALL_LONG" + && (INTVAL (operands[2]) & CALL_LONG) == 0" "* { /* Indirect calls should go through call_indirect */ @@ -6853,7 +6853,7 @@ (match_operand 2 "" "g,g"))) (use (match_operand:SI 3 "immediate_operand" "O,n")) (clobber (match_scratch:SI 4 "=l,l"))] - "INTVAL (operands[3]) != CALL_LONG" + "(INTVAL (operands[3]) & CALL_LONG) == 0" "* { if (INTVAL (operands[3]) & CALL_V4_SET_FP_ARGS) @@ -6873,7 +6873,7 @@ (use (match_operand:SI 3 "immediate_operand" "O,n")) (clobber (match_scratch:SI 4 "=l,l"))] "(DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_NT) - && INTVAL (operands[3]) != CALL_LONG" + && (INTVAL (operands[3]) & CALL_LONG) == 0" "* { /* This should be handled by call_value_indirect */ @@ -6897,7 +6897,7 @@ (use (match_operand:SI 3 "immediate_operand" "O,n")) (clobber (match_scratch:SI 4 "=l,l"))] "(DEFAULT_ABI == ABI_AIX_NODESC || DEFAULT_ABI == ABI_V4) - && INTVAL (operands[3]) != CALL_LONG" + && (INTVAL (operands[3]) & CALL_LONG) == 0" "* { /* This should be handled by call_value_indirect */ -- 2.11.0