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]
Other format: [Raw text]

[PATCH] Add input.h include to basic-block.h


basic-block.h now has an implicit dependency on input.h which this patch
makes explicit.

Bootstrapped and tested on i686-pc-linux-gnu.

Ok to apply?

//Mark

2004-06-14  Mark G. Adams  <mark.g.adams@sympatico.ca>

	* basic-block.h: Include input.h
	* Makefile.in: Add basic-block.h dependency on input.h

Index: basic-block.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/basic-block.h,v
retrieving revision 1.199
diff -c -3 -p -r1.199 basic-block.h
*** basic-block.h	14 Jun 2004 12:09:06 -0000	1.199
--- basic-block.h	14 Jun 2004 21:39:09 -0000
*************** Software Foundation, 59 Temple Place - S
*** 28,33 ****
--- 28,34 ----
  #include "partition.h"
  #include "hard-reg-set.h"
  #include "predict.h"
+ #include "input.h"
  
  /* Head of register set linked list.  */
  typedef bitmap_head regset_head;
Index: Makefile.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Makefile.in,v
retrieving revision 1.1298
diff -c -3 -p -r1.1298 Makefile.in
*** Makefile.in	14 Jun 2004 14:17:45 -0000	1.1298
--- Makefile.in	14 Jun 2004 21:39:10 -0000
*************** PARAMS_H = params.h params.def
*** 686,692 ****
  TREE_H = tree.h tree.def $(MACHMODE_H) tree-check.h builtins.def \
            input.h statistics.h
  BASIC_BLOCK_H = basic-block.h bitmap.h sbitmap.h varray.h $(PARTITION_H) \
!           hard-reg-set.h cfghooks.h
  COVERAGE_H = coverage.h gcov-io.h gcov-iov.h
  DEMANGLE_H = $(srcdir)/../include/demangle.h
  RECOG_H = recog.h
--- 686,692 ----
  TREE_H = tree.h tree.def $(MACHMODE_H) tree-check.h builtins.def \
            input.h statistics.h
  BASIC_BLOCK_H = basic-block.h bitmap.h sbitmap.h varray.h $(PARTITION_H) \
!           hard-reg-set.h cfghooks.h input.h
  COVERAGE_H = coverage.h gcov-io.h gcov-iov.h
  DEMANGLE_H = $(srcdir)/../include/demangle.h
  RECOG_H = recog.h

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