Makefile.in (reg-stack.o): Depend on reload.h.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Fri, 13 Apr 2001 21:10:16 +0000 (21:10 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Fri, 13 Apr 2001 21:10:16 +0000 (21:10 +0000)
* Makefile.in (reg-stack.o): Depend on reload.h.
(insn-attrtab.o): Depend on flags.h.

* genattrtab (main): Include flags.h in insn-attrtab.c.

* reg-stack.c: Include reload.h.

* sparc.h (flag_pic): Delete redundant declaration.

* output.h (flag_pic): Likewise.

* tree.h (pedantic): Likewise.

From-SVN: r41340

gcc/ChangeLog
gcc/Makefile.in
gcc/config/sparc/sparc.h
gcc/genattrtab.c
gcc/output.h
gcc/reg-stack.c
gcc/tree.h

index b3d3c91a8e13a43f89f852d79d10077214aa1952..f34c8a04c16be322f309366f63ca9567e2bcd724 100644 (file)
@@ -1,3 +1,18 @@
+2001-04-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * Makefile.in (reg-stack.o): Depend on reload.h.
+       (insn-attrtab.o): Depend on flags.h.
+
+       * genattrtab (main): Include flags.h in insn-attrtab.c.
+
+       * reg-stack.c: Include reload.h.
+
+       * sparc.h (flag_pic): Delete redundant declaration.
+
+       * output.h (flag_pic): Likewise.
+
+       * tree.h (pedantic): Likewise.
+
 2001-04-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * Makefile.in (toplev.o, jump.o, regmove.o): Depend on reload.h
index b824f3965f0353982f7c4190058394c649a025a2..69054d02ef443bab9b327538362e21f7429f5026 100644 (file)
@@ -1557,7 +1557,7 @@ recog.o : recog.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) function.h $(BASIC_BLOCK_H) \
    $(REGS_H) $(RECOG_H) hard-reg-set.h flags.h insn-config.h $(INSN_ATTR_H) \
    real.h toplev.h output.h reload.h $(TM_P_H)
 reg-stack.o : reg-stack.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) $(RECOG_H) \
-   $(REGS_H) hard-reg-set.h flags.h insn-config.h toplev.h \
+   $(REGS_H) hard-reg-set.h flags.h insn-config.h toplev.h reload.h \
    varray.h function.h $(TM_P_H)
 predict.o: predict.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
    insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
@@ -1696,7 +1696,8 @@ s-peep : $(md_file) genpeep$(build_exeext) $(srcdir)/move-if-change
        touch s-peep
 
 insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) $(REGS_H) real.h \
-    output.h $(INSN_ATTR_H) insn-config.h $(SYSTEM_H) toplev.h $(RECOG_H) $(TM_P_H)
+    output.h $(INSN_ATTR_H) insn-config.h $(SYSTEM_H) toplev.h $(RECOG_H) \
+       $(TM_P_H) flags.h
        $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
 
 insn-attr.h: s-attr ; @true
index d65908eb35373c0008cf6a1eb9d14fa496aff716..9cfe4f7abcaf8a3fb84b3d891e916337796028d2 100644 (file)
@@ -3409,6 +3409,3 @@ do {                                                                      \
 
 #define DONT_ACCESS_GBLS_AFTER_EPILOGUE (flag_pic)
 
-/* Defined in flags.h, but insn-emit.c does not include flags.h.  */
-
-extern int flag_pic;
index b749e97013e085c7a7b1fb08845530c6e4ef40a7..fcf449c073bf0a4f5cecc0ba7e02f2af737b91e3 100644 (file)
@@ -6149,6 +6149,7 @@ from the machine description file `md'.  */\n\n");
   printf ("#include \"output.h\"\n");
   printf ("#include \"insn-attr.h\"\n");
   printf ("#include \"toplev.h\"\n");
+  printf ("#include \"flags.h\"\n");
   printf ("\n");
   printf ("#define operands recog_data.operand\n\n");
 
index 93badde43fab3d6588f9c6f29cbb2cbe4048a6a8..407435f04a9dc936ed7a722cc112f63388e5abb8 100644 (file)
@@ -375,11 +375,6 @@ extern int which_alternative;
 extern rtx final_sequence;
 #endif
 
-/* Nonzero means generate position-independent code.
-   This is not fully implemented yet.  */
-
-extern int flag_pic;
-
 /* The line number of the beginning of the current function.
    sdbout.c needs this so that it can output relative linenumbers.  */
 
index e31338a37d47207b1a39917da52c31974a3c0498..43bedebd90a6b70ee89691d0aad2891f9ecb87ab 100644 (file)
 #include "output.h"
 #include "basic-block.h"
 #include "varray.h"
+#include "reload.h"
 
 #ifdef STACK_REGS
 
index fe5a75fc44fae9baf5d203476a0f7ab4abf11f63..25bf7de292d57fa1fa42190c24018f64f3a248b8 100644 (file)
@@ -2455,10 +2455,6 @@ extern const char *input_filename;
 /* Current line number in input file.  */
 extern int lineno;
 
-/* Nonzero for -pedantic switch: warn about anything
-   that standard C forbids.  */
-extern int pedantic;
-
 /* Nonzero means lvalues are limited to those valid in pedantic ANSI C.
    Zero means allow extended lvalues.  */