From: Christian Würdig Date: Mon, 13 Mar 2006 11:33:16 +0000 (+0000) Subject: initial checkin for BEARCH typedefs X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=a8648d35f25f74878280f352d740fb7a50a56be0;p=libfirm initial checkin for BEARCH typedefs --- diff --git a/ir/be/bearch_t.h b/ir/be/bearch_t.h new file mode 100644 index 000000000..50e5d0beb --- /dev/null +++ b/ir/be/bearch_t.h @@ -0,0 +1,21 @@ + +/** + * Type declarations for the BEARCH module. + * $Id$ + */ + +#ifndef _BEARCH_T_H_ +#define _BEARCH_T_H_ + +typedef struct _arch_register_class_t arch_register_class_t; +typedef struct _arch_register_t arch_register_t; +typedef struct _arch_isa_if_t arch_isa_if_t; +typedef struct _arch_isa_t arch_isa_t; +typedef struct _arch_env_t arch_env_t; +typedef struct _arch_irn_ops_if_t arch_irn_ops_if_t; +typedef struct _arch_irn_ops_t arch_irn_ops_t; +typedef struct _arch_irn_handler_t arch_irn_handler_t; +typedef struct _arch_code_generator_t arch_code_generator_t; +typedef struct _arch_code_generator_if_t arch_code_generator_if_t; + +#endif /* _BEARCH_T_H_ */