This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: expr.c failing to compile



This change:

  2000-03-18  Richard Henderson  <rth@cygnus.com>

	* expr.c (emit_move_insn_1): Clarify cannot_inline message.

requires the appended modification; otherwise N_ isn't defined.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

2000-03-18  Mark Mitchell  <mark@codesourcery.com>

	* expr.c: Include intl.h.
	* Makefile.in (expr.o): Depend on intl.h.

Index: expr.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/expr.c,v
retrieving revision 1.215
diff -c -p -r1.215 expr.c
*** expr.c	2000/03/19 01:56:42	1.215
--- expr.c	2000/03/19 05:12:09
*************** Boston, MA 02111-1307, USA.  */
*** 42,47 ****
--- 42,48 ----
  #include "defaults.h"
  #include "toplev.h"
  #include "ggc.h"
+ #include "intl.h"
  #include "tm_p.h"
  
  /* Decide whether a function's arguments should be processed
Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/egcs/gcc/Makefile.in,v
retrieving revision 1.404
diff -c -p -r1.404 Makefile.in
*** Makefile.in	2000/03/17 22:40:43	1.404
--- Makefile.in	2000/03/19 05:13:56
*************** except.o : except.c $(CONFIG_H) system.h
*** 1514,1520 ****
  expr.o : expr.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
     $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h $(RECOG_H) \
     output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h except.h \
!    ggc.h
  builtins.o : builtins.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
     function.h $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h \
     $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
--- 1514,1520 ----
  expr.o : expr.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
     $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h $(RECOG_H) \
     output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h except.h \
!    ggc.h intl.h
  builtins.o : builtins.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
     function.h $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h \
     $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]