From e91e4f6ceea7584e06dafa3aca1ad62167fe8621 Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Mon, 2 Jun 2003 14:15:15 +0000 Subject: mips.c: Don't include output.h twice. * mips.c: Don't include output.h twice. * stormy16.c: Likewise. * xtensa.c: Likewise. * output.h: Protect against multiple inclusion. From-SVN: r67330 --- gcc/output.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/output.h') diff --git a/gcc/output.h b/gcc/output.h index dcbcee69139..6f6be6428b0 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -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 */ -- cgit v1.2.1