| Index: gcc/gcc/reload.h
|
| diff --git a/gcc/gcc/reload.h b/gcc/gcc/reload.h
|
| index 3789680f7cad4a1d1acc4c77cae1f08218242d38..6118bedf26903d3a7c94d9da56667a0f8cb400e7 100644
|
| --- a/gcc/gcc/reload.h
|
| +++ b/gcc/gcc/reload.h
|
| @@ -1,6 +1,7 @@
|
| /* Communication between reload.c, reload1.c and the rest of compiler.
|
| Copyright (C) 1987, 1991, 1992, 1993, 1994, 1995, 1997, 1998, 1999,
|
| - 2000, 2001, 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
|
| + 2000, 2001, 2003, 2004, 2007, 2008, 2010
|
| + Free Software Foundation, Inc.
|
|
|
| This file is part of GCC.
|
|
|
| @@ -289,7 +290,7 @@ extern int find_reloads (rtx, int, int, int, short *);
|
| address, namely: sum constant integers, surround the sum of two
|
| constants with a CONST, put the constant as the second operand, and
|
| group the constant on the outermost sum. */
|
| -extern rtx form_sum (rtx, rtx);
|
| +extern rtx form_sum (enum machine_mode, rtx, rtx);
|
|
|
| /* Substitute into the current INSN the registers into which we have reloaded
|
| the things that need reloading. */
|
| @@ -349,6 +350,9 @@ extern bool elimination_target_reg_p (rtx);
|
| /* Deallocate the reload register used by reload number R. */
|
| extern void deallocate_reload_reg (int r);
|
|
|
| +/* True if caller-save has been reinitialized. */
|
| +extern bool caller_save_initialized_p;
|
| +
|
| /* Functions in caller-save.c: */
|
|
|
| /* Initialize for caller-save. */
|
|
|