]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
mips.c: Don't include output.h twice.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Mon, 2 Jun 2003 14:15:15 +0000 (14:15 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Mon, 2 Jun 2003 14:15:15 +0000 (14:15 +0000)
* mips.c: Don't include output.h twice.
* stormy16.c: Likewise.
* xtensa.c: Likewise.
* output.h: Protect against multiple inclusion.

From-SVN: r67330

gcc/ChangeLog
gcc/config/mips/mips.c
gcc/config/stormy16/stormy16.c
gcc/config/xtensa/xtensa.c
gcc/output.h

index 8350f37cf8ad88aa41ff488038ac346fdb63afb7..4a21b0a081d58b96adb59654e5be606bf6940f93 100644 (file)
@@ -1,3 +1,10 @@
+2003-06-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * mips.c: Don't include output.h twice.
+       * stormy16.c: Likewise.
+       * xtensa.c: Likewise.
+       * output.h: Protect against multiple inclusion.
+
 2003-06-02  J"orn Rennecke <joern.rennecke@superh.com>
 
        * sh.h (OLD_ARG_MODE): New macro.
index d77a3ebe68887fdc957bd62bc5813762b6e78fc1..67c42a08f949c46be95dc22815ca215cb651594e 100644 (file)
@@ -47,7 +47,6 @@ Boston, MA 02111-1307, USA.  */
 #include "expr.h"
 #include "flags.h"
 #include "reload.h"
-#include "output.h"
 #include "tm_p.h"
 #include "ggc.h"
 #include "gstab.h"
index 193be195012a8f7fa578fc925ce2bf925ef36904..823f193c853163b6edd9d83a46dcd6608ffb16d4 100644 (file)
@@ -40,7 +40,6 @@ Boston, MA 02111-1307, USA.  */
 #include "tree.h"
 #include "expr.h"
 #include "optabs.h"
-#include "output.h"
 #include "except.h"
 #include "function.h"
 #include "target.h"
index d3ec724b165ad675814edb265a9c45516623d9e0..3c382d96ca52c4f6d819d45329bf6d5008f08a0d 100644 (file)
@@ -43,7 +43,6 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include "function.h"
 #include "toplev.h"
 #include "optabs.h"
-#include "output.h"
 #include "libfuncs.h"
 #include "ggc.h"
 #include "target.h"
index dcbcee691397135407d3aca8f14ea41e89aebf90..6f6be6428b0f22ef2cd1cfccbde02d7e972d05a7 100644 (file)
@@ -20,6 +20,9 @@ along with GCC; see the file COPYING.  If not, write to the Free
 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.  */
 
+#ifndef GCC_OUTPUT_H
+#define GCC_OUTPUT_H
+
 /* Compute branch alignments based on frequency information in the CFG.  */
 extern void compute_alignments  PARAMS ((void));
 
@@ -536,3 +539,5 @@ extern void assemble_vtable_inherit PARAMS ((struct rtx_def *,
                                             struct rtx_def *));
 
 extern int default_address_cost PARAMS ((rtx));
+
+#endif /* ! GCC_OUTPUT_H */