Commit af931390 by Josef Zlomek Committed by Josef Zlomek

var-tracking.c (track_expr_p): Do not track variables which should be ignored…

var-tracking.c (track_expr_p): Do not track variables which should be ignored for debugging purposes.

	PR/14362
	* var-tracking.c (track_expr_p): Do not track variables which
	should be ignored for debugging purposes.

From-SVN: r78902
parent ddc68564
2004-03-04 Josef Zlomek <zlomekj@suse.cz>
PR/14362
* var-tracking.c (track_expr_p): Do not track variables which
should be ignored for debugging purposes.
2004-03-04 Alan Modra <amodra@bigpond.net.au>
* real.c (encode_ibm_extended): Don't bother rounding low double.
......
......@@ -1361,6 +1361,10 @@ track_expr_p (tree expr)
if (!decl_rtl)
return 0;
/* Do not track decl if is should be ignored for debugging purposes. */
if (DECL_IGNORED_P (expr))
return 0;
/* Do not track global variables until we are able to emit correct location
list for them. */
if (TREE_STATIC (expr))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment