diff options
author | Richard Henderson <rth@cygnus.com> | 2000-05-27 19:59:35 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2000-05-27 19:59:35 -0700 |
commit | 7d70b8b2f7cbf969c1096ce9df6c7289aebf5d1a (patch) | |
tree | a0a09d3cc63b83a118dc4fb67bc935e3bc3d6aaf /gcc | |
parent | 596ea4e574aa9177437b95dcb2412e0673df8c0a (diff) | |
download | gcc-7d70b8b2f7cbf969c1096ce9df6c7289aebf5d1a.zip gcc-7d70b8b2f7cbf969c1096ce9df6c7289aebf5d1a.tar.gz gcc-7d70b8b2f7cbf969c1096ce9df6c7289aebf5d1a.tar.bz2 |
* config/rs6000/rs6000.md (untyped_call): Use GEN_CALL.
From-SVN: r34224
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/rs6000/rs6000.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index cff7b96..f3e6ed7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2000-05-27 Richard Henderson <rth@cygnus.com> + * config/rs6000/rs6000.md (untyped_call): Use GEN_CALL. + +2000-05-27 Richard Henderson <rth@cygnus.com> + * config/alpha/alpha.c (alpha_does_function_need_gp): Test TARGET_PROFILING_NEEDS_GP in the if, instead of with an ifdef. (alpha_expand_prologue): Emit prologue_mcount if needed. diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 96e6b5c..589d3c7 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -10060,7 +10060,7 @@ operands[2] = GEN_INT (INTVAL (operands[1]) >> 32); { int i; - emit_call_insn (gen_call (operands[0], const0_rtx, const0_rtx, const0_rtx)); + emit_call_insn (GEN_CALL (operands[0], const0_rtx, const0_rtx, const0_rtx)); for (i = 0; i < XVECLEN (operands[2], 0); i++) { |