This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
tree ssa and type issues
- From: Gabriel Dos Reis <gdr at integrable-solutions dot net>
- To: gcc at gcc dot gnu dot org
- Date: 21 May 2005 20:01:00 +0200
- Subject: tree ssa and type issues
Hi again,
I just hit this one from tree-ssa-into.c:rewrite_into_ssa()
/* Initialize dominance frontier. */
dfs = (bitmap *) xmalloc (last_basic_block * sizeof (bitmap *));
^^^^^^^^
If the sizeof operand really supposed to be "bitmap*" and not "bitmap"?
-- Gaby