From 7953c6102285e76dec62143121915da47fa9aa5d Mon Sep 17 00:00:00 2001 From: crux Date: Mon, 20 Sep 1999 10:00:03 +0000 Subject: Make it possible to prototype port-specific functions (and convert i386 to use this) git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29514 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/config/i386/i386.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gcc/config/i386/i386.md') diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 0841ba194e0..53b23f87a8d 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -6455,7 +6455,7 @@ "" "* { - if (constant_call_address_operand (operands[0])) + if (constant_call_address_operand (operands[0], GET_MODE (operands[0]))) return \"call\\t%P0\"; operands[0] = XEXP (operands[0], 0); @@ -6502,7 +6502,7 @@ "" "* { - if (constant_call_address_operand (operands[0])) + if (constant_call_address_operand (operands[0], GET_MODE (operands[0]))) return \"call\\t%P0\"; operands[0] = XEXP (operands[0], 0); @@ -6561,7 +6561,7 @@ "" "* { - if (constant_call_address_operand (operands[1])) + if (constant_call_address_operand (operands[1], GET_MODE (operands[1]))) return \"call\\t%P1\"; operands[1] = XEXP (operands[1], 0); @@ -6611,7 +6611,7 @@ "" "* { - if (constant_call_address_operand (operands[1])) + if (constant_call_address_operand (operands[1], GET_MODE (operands[1]))) return \"call\\t%P1\"; operands[1] = XEXP (operands[1], 0); @@ -7754,7 +7754,7 @@ "flag_pic" " { - load_pic_register (1); + load_pic_register (); DONE; }") -- cgit v1.2.1