diff options
author | Rodney Brown <RodneyBrown@mynd.com> | 2000-08-08 22:40:49 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-08-08 16:40:49 -0600 |
commit | 0499c2e4ddfa69d2c40873885bfdfb2142774e35 (patch) | |
tree | 68540eed1eaf1bf73d8fe60699d74cc426c941ae | |
parent | ebec3cf99d0e2e3a12581070d0502dea52d359af (diff) | |
download | gcc-0499c2e4ddfa69d2c40873885bfdfb2142774e35.zip gcc-0499c2e4ddfa69d2c40873885bfdfb2142774e35.tar.gz gcc-0499c2e4ddfa69d2c40873885bfdfb2142774e35.tar.bz2 |
alpha.c (alpha_emit_xfloating_libcall): Use GEN_CALL_VALUE define.
* alpha/alpha.c (alpha_emit_xfloating_libcall):
Use GEN_CALL_VALUE define.
* alpha/alpha.md (untyped_call): Use GEN_CALL define.
* clipper/clipper.md (untyped_call): Likewise.
* dsp16xx/dsp16xx.md (untyped_call): Likewise.
* fx80/fx80.md (untyped_call): Likewise.
* mips/mips.md (untyped_call): Likewise.
* ns32k/ns32k.md (untyped_call): Likewise.
* pa/pa.md (untyped_call): Likewise.
* romp/romp.md (untyped_call): Likewise.
* sparc/sparc.md (untyped_call): Likewise.
From-SVN: r35573
-rw-r--r-- | gcc/ChangeLog | 14 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.c | 2 | ||||
-rw-r--r-- | gcc/config/alpha/alpha.md | 2 | ||||
-rw-r--r-- | gcc/config/clipper/clipper.md | 2 | ||||
-rw-r--r-- | gcc/config/dsp16xx/dsp16xx.md | 2 | ||||
-rw-r--r-- | gcc/config/fx80/fx80.md | 2 | ||||
-rw-r--r-- | gcc/config/mips/mips.md | 2 | ||||
-rw-r--r-- | gcc/config/ns32k/ns32k.md | 2 | ||||
-rw-r--r-- | gcc/config/pa/pa.md | 2 | ||||
-rw-r--r-- | gcc/config/romp/romp.md | 2 | ||||
-rw-r--r-- | gcc/config/sparc/sparc.md | 2 |
11 files changed, 24 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 25c17cc..f1fe033 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,17 @@ +2000-08-08 Rodney Brown <RodneyBrown@mynd.com> + + * alpha/alpha.c (alpha_emit_xfloating_libcall): + Use GEN_CALL_VALUE define. + * alpha/alpha.md (untyped_call): Use GEN_CALL define. + * clipper/clipper.md (untyped_call): Likewise. + * dsp16xx/dsp16xx.md (untyped_call): Likewise. + * fx80/fx80.md (untyped_call): Likewise. + * mips/mips.md (untyped_call): Likewise. + * ns32k/ns32k.md (untyped_call): Likewise. + * pa/pa.md (untyped_call): Likewise. + * romp/romp.md (untyped_call): Likewise. + * sparc/sparc.md (untyped_call): Likewise. + 2000-08-08 Jason Eckhardt <jle@cygnus.com> * config/i860/i860.c (singlemove_string): Do not generate assembler diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 1332af7..99535ab 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -2132,7 +2132,7 @@ alpha_emit_xfloating_libcall (func, target, operands, noperands, equiv) } tmp = gen_rtx_MEM (QImode, gen_rtx_SYMBOL_REF (Pmode, (char *) func)); - tmp = emit_call_insn (gen_call_value (reg, tmp, const0_rtx, + tmp = emit_call_insn (GEN_CALL_VALUE (reg, tmp, const0_rtx, const0_rtx, const0_rtx)); CALL_INSN_FUNCTION_USAGE (tmp) = usage; diff --git a/gcc/config/alpha/alpha.md b/gcc/config/alpha/alpha.md index 34d3daf..36d16c2 100644 --- a/gcc/config/alpha/alpha.md +++ b/gcc/config/alpha/alpha.md @@ -4324,7 +4324,7 @@ { int i; - emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { diff --git a/gcc/config/clipper/clipper.md b/gcc/config/clipper/clipper.md index efe26a9..8d4542c 100644 --- a/gcc/config/clipper/clipper.md +++ b/gcc/config/clipper/clipper.md @@ -1373,7 +1373,7 @@ { int i; - emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { diff --git a/gcc/config/dsp16xx/dsp16xx.md b/gcc/config/dsp16xx/dsp16xx.md index 8f96467..28cf9c7 100644 --- a/gcc/config/dsp16xx/dsp16xx.md +++ b/gcc/config/dsp16xx/dsp16xx.md @@ -2108,7 +2108,7 @@ { int i; - emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { diff --git a/gcc/config/fx80/fx80.md b/gcc/config/fx80/fx80.md index 6fffb16..5cb320b 100644 --- a/gcc/config/fx80/fx80.md +++ b/gcc/config/fx80/fx80.md @@ -2450,7 +2450,7 @@ { int i; - emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 92f5bea..b34189a 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -9914,7 +9914,7 @@ ld\\t%2,%1-%S1(%2)\;daddu\\t%2,%2,$31\;j\\t%2" { int i; - emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { diff --git a/gcc/config/ns32k/ns32k.md b/gcc/config/ns32k/ns32k.md index ca74f77..7cc29a5 100644 --- a/gcc/config/ns32k/ns32k.md +++ b/gcc/config/ns32k/ns32k.md @@ -2599,7 +2599,7 @@ { int i; - emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index f9f7230..d7d5c57 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -6138,7 +6138,7 @@ { int i; - emit_call_insn (gen_call (operands[0], const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { diff --git a/gcc/config/romp/romp.md b/gcc/config/romp/romp.md index cc6c30f..131e78c 100644 --- a/gcc/config/romp/romp.md +++ b/gcc/config/romp/romp.md @@ -1784,7 +1784,7 @@ { int i; - emit_call_insn (gen_call (operands[0], const0_rtx, NULL, const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index 8fb4b94..82386e5 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -8731,7 +8731,7 @@ /* Pass constm1 to indicate that it may expect a structure value, but we don't know what size it is. */ - emit_call_insn (gen_call (operands[0], const0_rtx, NULL, constm1_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, NULL, constm1_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { |