summaryrefslogtreecommitdiff
path: root/gcc/output.h
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-02 14:15:15 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-02 14:15:15 +0000
commit10f913f2634ec7d177e82f01c310105d9ff8c83b (patch)
treeb1f9123840c32ded8180246d9b6ff6ff5ded94a0 /gcc/output.h
parent0afd60d6f1b3672f025cbdcc48f097c4a77c433e (diff)
downloadgcc-10f913f2634ec7d177e82f01c310105d9ff8c83b.tar.gz
* mips.c: Don't include output.h twice.
* stormy16.c: Likewise. * xtensa.c: Likewise. * output.h: Protect against multiple inclusion. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67330 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/output.h')
-rw-r--r--gcc/output.h5
1 files changed, 5 insertions, 0 deletions
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 */