postreload-gcse.c (alloc_mem): Start CUID numbering at 1.

2005-07-26  Dale Johannesen  <dalej@apple.com>

        * postreload-gcse.c (alloc_mem):  Start CUID numbering at 1.

From-SVN: r102391
This commit is contained in:
Dale Johannesen 2005-07-26 18:47:05 +00:00 committed by Dale Johannesen
parent 06e8925e96
commit 576a47952b
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2005-07-26 Dale Johannesen <dalej@apple.com>
* postreload-gcse.c (alloc_mem): Start CUID numbering at 1.
2005-07-26 Mark Mitchell <mark@codesourcery.com>
* doc/install.texi (--with-build-sysroot): Fix grammatical error.

View file

@ -225,7 +225,7 @@ alloc_mem (void)
/* Find the largest UID and create a mapping from UIDs to CUIDs. */
uid_cuid = xcalloc (get_max_uid () + 1, sizeof (int));
i = 0;
i = 1;
FOR_EACH_BB (bb)
FOR_BB_INSNS (bb, insn)
{