Commit bfcccecc by Robert Lipe Committed by Robert Lipe

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
parent 2aa3110a
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 <ghazi@caip.rutgers.edu>
* combine.c (gen_rtx_combine): Add missing call to va_end().
......
......@@ -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 (); \
......
......@@ -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 (); \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment