Commit 569b527e by H.J. Lu Committed by H.J. Lu

Change maybe_eh_return to bool.

2011-05-12  H.J. Lu  <hongjiu.lu@intel.com>

	* config/i386/i386.c (ix86_save_reg): Change maybe_eh_return
	to bool.
	(ix86_emit_restore_regs_using_mov): Likewise.
	(ix86_emit_restore_sse_regs_using_mov): Likewise.

From-SVN: r173716
parent d53903d6
2011-05-12 H.J. Lu <hongjiu.lu@intel.com>
* config/i386/i386.c (ix86_save_reg): Change maybe_eh_return
to bool.
(ix86_emit_restore_regs_using_mov): Likewise.
(ix86_emit_restore_sse_regs_using_mov): Likewise.
2011-05-12 Anatoly Sokolov <aesok@post.ru> 2011-05-12 Anatoly Sokolov <aesok@post.ru>
* config/sparc/sparc.h (REG_OK_FOR_INDEX_P, REG_OK_FOR_BASE_P, * config/sparc/sparc.h (REG_OK_FOR_INDEX_P, REG_OK_FOR_BASE_P,
......
...@@ -9066,7 +9066,7 @@ ix86_select_alt_pic_regnum (void) ...@@ -9066,7 +9066,7 @@ ix86_select_alt_pic_regnum (void)
/* Return 1 if we need to save REGNO. */ /* Return 1 if we need to save REGNO. */
static int static int
ix86_save_reg (unsigned int regno, int maybe_eh_return) ix86_save_reg (unsigned int regno, bool maybe_eh_return)
{ {
if (pic_offset_table_rtx if (pic_offset_table_rtx
&& regno == REAL_PIC_OFFSET_TABLE_REGNUM && regno == REAL_PIC_OFFSET_TABLE_REGNUM
...@@ -10898,7 +10898,7 @@ ix86_emit_leave (void) ...@@ -10898,7 +10898,7 @@ ix86_emit_leave (void)
First register is restored from CFA - CFA_OFFSET. */ First register is restored from CFA - CFA_OFFSET. */
static void static void
ix86_emit_restore_regs_using_mov (HOST_WIDE_INT cfa_offset, ix86_emit_restore_regs_using_mov (HOST_WIDE_INT cfa_offset,
int maybe_eh_return) bool maybe_eh_return)
{ {
struct machine_function *m = cfun->machine; struct machine_function *m = cfun->machine;
unsigned int regno; unsigned int regno;
...@@ -10937,7 +10937,7 @@ ix86_emit_restore_regs_using_mov (HOST_WIDE_INT cfa_offset, ...@@ -10937,7 +10937,7 @@ ix86_emit_restore_regs_using_mov (HOST_WIDE_INT cfa_offset,
First register is restored from CFA - CFA_OFFSET. */ First register is restored from CFA - CFA_OFFSET. */
static void static void
ix86_emit_restore_sse_regs_using_mov (HOST_WIDE_INT cfa_offset, ix86_emit_restore_sse_regs_using_mov (HOST_WIDE_INT cfa_offset,
int maybe_eh_return) bool maybe_eh_return)
{ {
unsigned int regno; unsigned int regno;
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