Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- lib.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib.h b/lib.h index 134e56040..19b5cb0b3 100644 --- a/lib.h +++ b/lib.h @@ -75,6 +75,7 @@ DECLARE_PTR_LIST(basic_block_list, struct basic_block); DECLARE_PTR_LIST(instruction_list, struct instruction); DECLARE_PTR_LIST(multijmp_list, struct multijmp); DECLARE_PTR_LIST(pseudo_list, struct pseudo); +DECLARE_PTR_LIST(ident_list, struct ident); DECLARE_PTR_LIST(string_list, char); typedef struct pseudo *pseudo_t; @@ -244,6 +245,11 @@ static inline void add_expression(struct expression_list **list, struct expressi add_ptr_list(list, expr); } +static inline void add_ident(struct ident_list **list, struct ident *ident) +{ + add_ptr_list(list, ident); +} + #define hashval(x) ((unsigned long)(x)) #endif -- 2.12.0 -- To unsubscribe from this list: send the line "unsubscribe linux-sparse" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html