From: Michael Beck Date: Fri, 3 Apr 2009 23:05:53 +0000 (+0000) Subject: - removed commented out code X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=c67b9fc85a93fee7d305ed8b08f6fbcd3d58f940;p=libfirm - removed commented out code - indentation [r25783] --- diff --git a/include/libfirm/irtypeinfo.h b/include/libfirm/irtypeinfo.h index 4023aea74..324d0331e 100644 --- a/include/libfirm/irtypeinfo.h +++ b/include/libfirm/irtypeinfo.h @@ -61,20 +61,13 @@ void free_irtypeinfo(void); /* ------------ Irgraph state handling. ------------------------------- */ -/* -#define irg_typeinfo_none ir_typeinfo_none -#define irg_typeinfo_consistent ir_typeinfo_consistent -#define irg_typeinfo_inconsistent ir_typeinfo_inconsistent -#define irg_typeinfo_state ir_typeinfo_state -*/ - typedef enum { - ir_typeinfo_none, /**< No typeinfo computed, calls to set/get_irn_typeinfo_type() - are invalid. */ - ir_typeinfo_consistent, /**< Type info valid, calls to set/get_irn_typeinfo_type() return - the proper type. */ - ir_typeinfo_inconsistent /**< Type info can be accessed, but it can be invalid - because of other transformations. */ + ir_typeinfo_none, /**< No typeinfo computed, calls to set/get_irn_typeinfo_type() + are invalid. */ + ir_typeinfo_consistent, /**< Type info valid, calls to set/get_irn_typeinfo_type() return + the proper type. */ + ir_typeinfo_inconsistent /**< Type info can be accessed, but it can be invalid + because of other transformations. */ } ir_typeinfo_state; void set_irg_typeinfo_state(ir_graph *irg, ir_typeinfo_state s);