diff options
author | Richard Stallman <rms@gnu.org> | 1993-06-19 22:33:04 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-06-19 22:33:04 +0000 |
commit | 0eb60d83ecf95ac183f3a475099a38419eb5b1dd (patch) | |
tree | 237f5b099b5089cd0d70a915d24f2ecf04b8d070 /gcc | |
parent | 9623736278220d48982d35fe8db9db926394030f (diff) | |
download | gcc-0eb60d83ecf95ac183f3a475099a38419eb5b1dd.zip gcc-0eb60d83ecf95ac183f3a475099a38419eb5b1dd.tar.gz gcc-0eb60d83ecf95ac183f3a475099a38419eb5b1dd.tar.bz2 |
(call_pop, call, call_value_pop, call_value)
(call_pop, call, call_value_pop, call_value)
(untyped_call): Use expander_call_insn_operand.
From-SVN: r4700
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 37e9b6d..3b91864 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -3950,7 +3950,7 @@ if (GET_CODE (addr) != REG && HALF_PIC_P () && !CONSTANT_ADDRESS_P (addr)) XEXP (operands[0], 0) = force_reg (Pmode, addr); - if (! call_insn_operand (operands[0], QImode)) + if (! expander_call_insn_operand (operands[0], QImode)) operands[0] = change_address (operands[0], VOIDmode, copy_to_mode_reg (Pmode, XEXP (operands[0], 0))); @@ -3999,7 +3999,7 @@ if (GET_CODE (addr) != REG && HALF_PIC_P () && !CONSTANT_ADDRESS_P (addr)) XEXP (operands[0], 0) = force_reg (Pmode, addr); - if (! call_insn_operand (operands[0], QImode)) + if (! expander_call_insn_operand (operands[0], QImode)) operands[0] = change_address (operands[0], VOIDmode, copy_to_mode_reg (Pmode, XEXP (operands[0], 0))); @@ -4052,7 +4052,7 @@ if (GET_CODE (addr) != REG && HALF_PIC_P () && !CONSTANT_ADDRESS_P (addr)) XEXP (operands[1], 0) = force_reg (Pmode, addr); - if (! call_insn_operand (operands[1], QImode)) + if (! expander_call_insn_operand (operands[1], QImode)) operands[1] = change_address (operands[1], VOIDmode, copy_to_mode_reg (Pmode, XEXP (operands[1], 0))); @@ -4106,7 +4106,7 @@ if (GET_CODE (addr) != REG && HALF_PIC_P () && !CONSTANT_ADDRESS_P (addr)) XEXP (operands[1], 0) = force_reg (Pmode, addr); - if (! call_insn_operand (operands[1], QImode)) + if (! expander_call_insn_operand (operands[1], QImode)) operands[1] = change_address (operands[1], VOIDmode, copy_to_mode_reg (Pmode, XEXP (operands[1], 0))); @@ -4159,7 +4159,7 @@ XEXP (operands[0], 0) = force_reg (Pmode, addr); operands[1] = change_address (operands[1], DImode, XEXP (operands[1], 0)); - if (! call_insn_operand (operands[1], QImode)) + if (! expander_call_insn_operand (operands[1], QImode)) operands[1] = change_address (operands[1], VOIDmode, copy_to_mode_reg (Pmode, XEXP (operands[1], 0))); |