From: Carl Worth Date: Wed, 2 Jun 2010 21:43:03 +0000 (-0700) Subject: Remove dead code: _glcpp_parser_expand_token_list_onto X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c7c95fe51f0ff83d4d3e07a926f96336248f9509;p=mesa.git Remove dead code: _glcpp_parser_expand_token_list_onto This function simply isn't being called anymore. --- diff --git a/glcpp-parse.y b/glcpp-parse.y index dd8e133f550..a4e6559282c 100644 --- a/glcpp-parse.y +++ b/glcpp-parse.y @@ -1320,16 +1320,6 @@ _glcpp_parser_expand_token_list (glcpp_parser_t *parser, list->non_space_tail = list->tail; } -static void -_glcpp_parser_expand_token_list_onto (glcpp_parser_t *parser, - token_list_t *list, - token_list_t *result) -{ - _glcpp_parser_expand_token_list (parser, list); - - _token_list_append_list (result, list); -} - void _glcpp_parser_print_expanded_token_list (glcpp_parser_t *parser, token_list_t *list)