]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
2010-11-26 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 26 Nov 2010 14:04:50 +0000 (14:04 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 26 Nov 2010 14:04:50 +0000 (14:04 +0000)
PR tree-optimization/46665
* tree-ssa-structalias.c (pt_solution_set_var): Use DECL_PT_UID.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167176 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree-ssa-structalias.c

index cc26014244d60cea2aa49a618b517df63b201a34..a92635cd9a84b62379bb2f6f47c6c91b0d2d7170 100644 (file)
@@ -1,3 +1,8 @@
+2010-11-26  Richard Guenther  <rguenther@suse.de>
+
+       PR tree-optimization/46665
+       * tree-ssa-structalias.c (pt_solution_set_var): Use DECL_PT_UID.
+
 2010-11-26  Ian Bolton  <ian.bolton@arm.com>
 
        * config/arm/arm.c (arm_option_override): enable loop array
index 8c9ed6c9438d4efd83c4c66a034d220bd0c667c5..0c6000b6d3ee5cb3d69088527ff9c1f577528812 100644 (file)
@@ -5887,7 +5887,7 @@ pt_solution_set_var (struct pt_solution *pt, tree var)
 {
   memset (pt, 0, sizeof (struct pt_solution));
   pt->vars = BITMAP_GGC_ALLOC ();
-  bitmap_set_bit (pt->vars, DECL_UID (var));
+  bitmap_set_bit (pt->vars, DECL_PT_UID (var));
   pt->vars_contains_global = is_global_var (var);
 }