X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Ftv%2Ftv_t.h;h=4554c74097f953187c60a93925dca0c37ef9aac0;hb=0f234e2d94155d13c0e4727871125beda0eaa66d;hp=0049c84077c92a3bec9d92657b66549d00739922;hpb=aa4d0c76a2e006e9ba4d89f38701b07b8ec74991;p=libfirm diff --git a/ir/tv/tv_t.h b/ir/tv/tv_t.h index 0049c8407..4554c7409 100644 --- a/ir/tv/tv_t.h +++ b/ir/tv/tv_t.h @@ -92,43 +92,43 @@ struct tarval { /* * Access routines for tarval fields ======================================== */ -static INLINE ir_mode * +static inline ir_mode * _get_tarval_mode(const tarval *tv) { assert(tv); return tv->mode; } -static INLINE tarval * +static inline tarval * _get_tarval_bad(void) { return tarval_bad; } -static INLINE tarval * +static inline tarval * _get_tarval_undefined(void) { return tarval_undefined; } -static INLINE tarval * +static inline tarval * _get_tarval_b_false(void) { return tarval_b_false; } -static INLINE tarval * +static inline tarval * _get_tarval_b_true(void) { return tarval_b_true; } -static INLINE tarval * +static inline tarval * _get_tarval_reachable(void) { return tarval_reachable; } -static INLINE tarval * +static inline tarval * _get_tarval_unreachable(void) { return tarval_unreachable; } -static INLINE int +static inline int _is_tarval(const void *thing) { return get_kind(thing) == k_tarval; } @@ -140,7 +140,6 @@ _is_tarval(const void *thing) { #define get_tarval_b_true() _get_tarval_b_true() #define get_tarval_unreachable() _get_tarval_unreachable() #define get_tarval_reachable() _get_tarval_reachable() -#define get_tarval_P_void() _get_tarval_P_void() #define is_tarval(thing) _is_tarval(thing) #endif /* FIRM_TV_TV_T_H */