diff options
author | Richard Henderson <rth@cygnus.com> | 1999-09-04 13:00:00 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-04 13:00:00 -0700 |
commit | a2f196e089cbe531405483707c1bf89466473da6 (patch) | |
tree | 58f206cbd343357eb949b8b7a37e948bf18c60c2 /gcc | |
parent | 4519c0a872bb216f274a27151b56566f3e53a948 (diff) | |
download | gcc-a2f196e089cbe531405483707c1bf89466473da6.zip gcc-a2f196e089cbe531405483707c1bf89466473da6.tar.gz gcc-a2f196e089cbe531405483707c1bf89466473da6.tar.bz2 |
* i386/sco5.h (RETURN_POPS_ARGS): Name change ix86_return_pops_args.
From-SVN: r29108
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/i386/sco5.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ed79892..2178ca9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sat Sep 4 12:57:17 1999 Richard Henderson <rth@cygnus.com> + + * i386/sco5.h (RETURN_POPS_ARGS): Name change ix86_return_pops_args. + Sat Sep 4 11:19:52 1999 Richard Henderson <rth@cygnus.com> * Makefile.in (GGC, GGC_LIB): New. diff --git a/gcc/config/i386/sco5.h b/gcc/config/i386/sco5.h index ac4e7e1..3aae13d 100644 --- a/gcc/config/i386/sco5.h +++ b/gcc/config/i386/sco5.h @@ -679,7 +679,7 @@ dtors_section () \ #undef RETURN_POPS_ARGS #define RETURN_POPS_ARGS(FUNDECL,FUNTYPE,SIZE) \ ((TARGET_ELF) ? \ - (i386_return_pops_args (FUNDECL, FUNTYPE, SIZE)) : \ + (ix86_return_pops_args (FUNDECL, FUNTYPE, SIZE)) : \ (((FUNDECL) && (TREE_CODE (FUNDECL) == IDENTIFIER_NODE)) ? 0 \ : (TARGET_RTD \ && (TYPE_ARG_TYPES (FUNTYPE) == 0 \ |