Commit 9fb7564e by Jan Hubicka Committed by Jan Hubicka

* emit-rtl.c (init_emit): xcalloc regno_pointer_align.

From-SVN: r133933
parent 9e016eba
2008-04-05 Jan Hubicka <jh@suse.cz>
* emit-rtl.c (init_emit): xcalloc regno_pointer_align.
* tree-dump.c (dump_enable_all): Remove prototype; do not accept
letter argument.
(dump_files): Update.
......
......@@ -4991,8 +4991,8 @@ init_emit (void)
rtl.emit.regno_pointer_align_length = LAST_VIRTUAL_REGISTER + 101;
rtl.emit.regno_pointer_align
= xmalloc (rtl.emit.regno_pointer_align_length
* sizeof (unsigned char));
= xcalloc (rtl.emit.regno_pointer_align_length
* sizeof (unsigned char), 1);
regno_reg_rtx
= ggc_alloc (rtl.emit.regno_pointer_align_length * sizeof (rtx));
......
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