re PR bootstrap/47402 (Bootstrap comparison failure)

PR debug/47402
Temporarily revert:
2011-01-21  Alexandre Oliva  <aoliva@redhat.com>
PR debug/47106
* tree-dfa.c (create_var_ann): Mark variable as used.

From-SVN: r169107
This commit is contained in:
Alexandre Oliva 2011-01-21 22:11:24 +00:00 committed by Alexandre Oliva
parent 22afca6694
commit 12c30f2fba
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2011-01-21 Alexandre Oliva <aoliva@redhat.com>
PR debug/47402
Temporarily revert:
2011-01-21 Alexandre Oliva <aoliva@redhat.com>
PR debug/47106
* tree-dfa.c (create_var_ann): Mark variable as used.
2011-01-21 Jakub Jelinek <jakub@redhat.com>
PR middle-end/45566

View File

@ -137,9 +137,6 @@ create_var_ann (tree t)
ann = ggc_alloc_cleared_var_ann_d ();
*DECL_VAR_ANN_PTR (t) = ann;
/* Assume the variable is used, at least for now. */
ann->used = true;
return ann;
}