From: Richard Guenther Date: Mon, 9 Jan 2012 14:15:25 +0000 (+0000) Subject: macro.c (_cpp_builtin_macro_text): Remove unused variable map. X-Git-Tag: releases/gcc-4.7.0~1101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c5cbc315fad590eb2a89d46c8397fcb9b9cc2ba;p=thirdparty%2Fgcc.git macro.c (_cpp_builtin_macro_text): Remove unused variable map. 2012-01-09 Richard Guenther * macro.c (_cpp_builtin_macro_text): Remove unused variable map. From-SVN: r183013 --- diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index 8a1eb05c5e5a..4fc1ec8728b6 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,7 @@ +2012-01-09 Richard Guenther + + * macro.c (_cpp_builtin_macro_text): Remove unused variable map. + 2012-01-09 Gary Funck PR preprocessor/33919 diff --git a/libcpp/macro.c b/libcpp/macro.c index 32f99ca030a3..54de3e3fc0d9 100644 --- a/libcpp/macro.c +++ b/libcpp/macro.c @@ -217,7 +217,6 @@ static const char * const monthnames[] = const uchar * _cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node) { - const struct line_map *map; const uchar *result = NULL; linenum_type number = 1; @@ -300,7 +299,6 @@ _cpp_builtin_macro_text (cpp_reader *pfile, cpp_hashnode *node) break; case BT_SPECLINE: - map = LINEMAPS_LAST_ORDINARY_MAP (pfile->line_table); /* If __LINE__ is embedded in a macro, it must expand to the line of the macro's invocation, not its definition. Otherwise things like assert() will not work properly. */