From 480385f33744a2420d3b4100427aa12198b8dd5a Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 19 May 2006 02:30:42 +0000 Subject: [PATCH] make #ifndef at header start cannonical missing includes added [r7774] --- ir/arch/archop.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ir/arch/archop.h b/ir/arch/archop.h index 3f9bfe883..0d8b30c91 100644 --- a/ir/arch/archop.h +++ b/ir/arch/archop.h @@ -8,8 +8,11 @@ * Copyright: (c) 1998-2005 Universität Karlsruhe * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. */ -#ifndef _ARCHOP_H_ -#define _ARCHOP_H_ +#ifndef _FIRM_ARCH_ARCHOP_H_ +#define _FIRM_ARCH_ARCHOP_H_ + +#include "firm_types.h" +#include "dbginfo.h" /** * Mask defining which architecture depend @@ -64,4 +67,4 @@ ir_node *arch_transform_node_Mux(ir_node *mux); */ void firm_archops_init(const arch_ops_info *info); -#endif /* _ARCHOP_H_ */ +#endif /* _FIRM_ARCH_ARCHOP_H_ */ -- 2.20.1