From bfcccecc564752b7ef55ac9ca32ab8df0c5ba1dc Mon Sep 17 00:00:00 2001 From: Robert Lipe Date: Sun, 26 Sep 1999 21:43:48 +0000 Subject: [PATCH] dgux.h (SELECT_RTX_SECTION): Provide dummy argument for symbolic_operand(). * config/i386/dgux.h (SELECT_RTX_SECTION): Provide dummy argument for symbolic_operand(). * config/i386/sco5.h (SELECT_RTX_SECTION): Likewise. From-SVN: r29670 --- gcc/ChangeLog | 6 ++++++ gcc/config/i386/dgux.h | 4 ++-- gcc/config/i386/sco5.h | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1c0e7ec..3233125 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Sun Sep 26 16:36:52 1999 Robert Lipe (robertlipe@usa.net) + + * config/i386/dgux.h (SELECT_RTX_SECTION): Provide dummy argument + for symbolic_operand(). + * config/i386/sco5.h (SELECT_RTX_SECTION): Likewise. + Sun Sep 26 07:37:11 1999 Kaveh R. Ghazi * combine.c (gen_rtx_combine): Add missing call to va_end(). diff --git a/gcc/config/i386/dgux.h b/gcc/config/i386/dgux.h index ccc8a0a..54b29af 100644 --- a/gcc/config/i386/dgux.h +++ b/gcc/config/i386/dgux.h @@ -26,7 +26,7 @@ Boston, MA 02111-1307, USA. */ #include "i386/sysv4.h" #ifndef VERSION_INFO2 -#define VERSION_INFO2 "$Revision: 1.6 $" +#define VERSION_INFO2 "$Revision: 1.7 $" #endif #ifndef VERSION_STRING @@ -228,7 +228,7 @@ Boston, MA 02111-1307, USA. */ #undef SELECT_RTX_SECTION #define SELECT_RTX_SECTION(MODE,RTX) \ { \ - if (flag_pic && symbolic_operand (RTX)) \ + if (flag_pic && symbolic_operand (RTX, VOIDmode)) \ data_section (); \ else \ const_section (); \ diff --git a/gcc/config/i386/sco5.h b/gcc/config/i386/sco5.h index 9bd348e..bea9ede 100644 --- a/gcc/config/i386/sco5.h +++ b/gcc/config/i386/sco5.h @@ -381,7 +381,7 @@ do { \ #define SELECT_RTX_SECTION(MODE,RTX) \ { \ if (TARGET_ELF) { \ - if (flag_pic && symbolic_operand (RTX)) \ + if (flag_pic && symbolic_operand (RTX, VOIDmode)) \ data_section (); \ else \ const_section (); \ -- 2.7.4