'struct pseudo_ptr_list' was used to store pseudo usage but this structure is not used since commit e7fb6e092 (Add instruction to pseudo user tracking). Remove the leftovers. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx> --- linearize.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/linearize.h b/linearize.h index c0c49bdf0..eba0dd532 100644 --- a/linearize.h +++ b/linearize.h @@ -9,7 +9,6 @@ #include "symbol.h" struct instruction; -DECLARE_PTR_LIST(pseudo_ptr_list, pseudo_t); struct pseudo_user { struct instruction *insn; @@ -310,11 +309,6 @@ static inline int bb_reachable(struct basic_block *bb) return bb != NULL; } -static inline void add_pseudo_ptr(pseudo_t *ptr, struct pseudo_ptr_list **list) -{ - add_ptr_list(list, ptr); -} - static inline void add_pseudo_user_ptr(struct pseudo_user *user, struct pseudo_user_list **list) { add_ptr_list(list, user); -- 2.16.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