Commit b9b9d063 by H.J. Lu Committed by Zack Weinberg

gengenrtl.c (obstack_alloc_rtx): Correct the allocated size.

2000-06-12  H.J. Lu  <hjl@gnu.org>

	* gengenrtl.c (obstack_alloc_rtx): Correct the allocated size.

From-SVN: r34504
parent 9bab6c90
2000-06-12 H.J. Lu <hjl@gnu.org>
* gengenrtl.c (obstack_alloc_rtx): Correct the allocated size.
2000-06-12 David Edelsohn <edelsohn@gnu.org> 2000-06-12 David Edelsohn <edelsohn@gnu.org>
* aix41.h (SUBTARGET_SWITCHES): Delete threads. * aix41.h (SUBTARGET_SWITCHES): Delete threads.
......
...@@ -362,7 +362,7 @@ gencode () ...@@ -362,7 +362,7 @@ gencode ()
puts ("#define obstack_alloc_rtx(n) \\"); puts ("#define obstack_alloc_rtx(n) \\");
puts (" ((rtx) obstack_alloc (rtl_obstack, \\"); puts (" ((rtx) obstack_alloc (rtl_obstack, \\");
puts (" sizeof (struct rtx_def) \\"); puts (" sizeof (struct rtx_def) \\");
puts (" + ((n) - 2) * sizeof (rtunion)))\n"); puts (" + ((n) - 1) * sizeof (rtunion)))\n");
for (fmt = formats; *fmt != 0; fmt++) for (fmt = formats; *fmt != 0; fmt++)
gendef (*fmt); gendef (*fmt);
......
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