From: Iain Sandoe Date: Fri, 7 May 2010 17:34:31 +0000 (+0000) Subject: re PR target/43708 (gcc.dg/pragma-darwin.c "set not used", not working with pragma) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3bd5cdeb0e00feb040e5611e584509db27eeebf8;p=gcc.git re PR target/43708 (gcc.dg/pragma-darwin.c "set not used", not working with pragma) PR target/43708 * config/darwin-c.c (darwin_pragma_unused): Set DECL_READ_P in addition to TREE_USED, to avoid "set but unused" warnings. From-SVN: r159164 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5467fa98d37..58a3276992b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2010-05-07 Iain Sandoe + + PR target/43708 + * config/darwin-c.c (darwin_pragma_unused): Set DECL_READ_P + in addition to TREE_USED, to avoid "set but unused" warnings. + 2010-05-07 Changpeng Fang * tree-ssa-loop-prefetch.c (TRIP_COUNT_TO_AHEAD_RATIO): New. diff --git a/gcc/config/darwin-c.c b/gcc/config/darwin-c.c index 862a1d1f4c0..bd7c987e744 100644 --- a/gcc/config/darwin-c.c +++ b/gcc/config/darwin-c.c @@ -144,7 +144,10 @@ darwin_pragma_unused (cpp_reader *pfile ATTRIBUTE_UNUSED) tree local = lookup_name (decl); if (local && (TREE_CODE (local) == PARM_DECL || TREE_CODE (local) == VAR_DECL)) - TREE_USED (local) = 1; + { + TREE_USED (local) = 1; + DECL_READ_P (local) = 1; + } tok = pragma_lex (&x); if (tok != CPP_COMMA) break;