Commit 274077a4 by Mark Mitchell Committed by Mark Mitchell

* dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Fix typo.

From-SVN: r35063
parent 96eab8e2
2000-07-16 Mark Mitchell <mark@codesourcery.com>
* dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Fix typo.
2000-07-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2000-07-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* fixinc/fixfixes.c (emit_gnu_type): Avoid string concatenation. * fixinc/fixfixes.c (emit_gnu_type): Avoid string concatenation.
......
...@@ -626,7 +626,7 @@ expand_builtin_init_dwarf_reg_sizes (address) ...@@ -626,7 +626,7 @@ expand_builtin_init_dwarf_reg_sizes (address)
rtx addr = expand_expr (address, NULL_RTX, VOIDmode, 0); rtx addr = expand_expr (address, NULL_RTX, VOIDmode, 0);
rtx mem = gen_rtx_MEM (mode, addr); rtx mem = gen_rtx_MEM (mode, addr);
i = MAX (FIRST_PSEUDO_REGISTER, DWARF_FRAME_REGISTERS); i = MIN (FIRST_PSEUDO_REGISTER, DWARF_FRAME_REGISTERS);
while (i--) while (i--)
{ {
int offset = DWARF_FRAME_REGNUM (i) * GET_MODE_SIZE (mode); int offset = DWARF_FRAME_REGNUM (i) * GET_MODE_SIZE (mode);
......
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