This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[tree-ssa] fixlet for sbitmap->bitmap conversion
- From: Diego Novillo <dnovillo at redhat dot com>
- To: "gcc-patches at gcc dot gnu dot org" <gcc-patches at gcc dot gnu dot org>
- Date: Mon, 15 Dec 2003 10:59:59 -0500
- Subject: [tree-ssa] fixlet for sbitmap->bitmap conversion
- Organization: Red Hat Canada
Left over from the bitmap conversion for vars_to_rename. Mostly
harmless. Both calls are just wrappers around free.
Diego.
* tree-optimize.c (optimize_function_tree): Call BITMAP_XFREE.
Index: tree-optimize.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-optimize.c,v
retrieving revision 1.1.4.94
diff -d -c -p -r1.1.4.94 tree-optimize.c
*** tree-optimize.c 13 Dec 2003 19:39:48 -0000 1.1.4.94
--- tree-optimize.c 15 Dec 2003 03:21:21 -0000
*************** optimize_function_tree (tree fndecl, tre
*** 254,260 ****
ggc_collect ();
/* Flush out flow graph and SSA data. */
! sbitmap_free (vars_to_rename);
}
tree_ssa_finish (chain);
--- 254,260 ----
ggc_collect ();
/* Flush out flow graph and SSA data. */
! BITMAP_XFREE (vars_to_rename);
}
tree_ssa_finish (chain);