avr.h (avr_accumulate_outgoing_args): Return int.

* config/avr/avr.h (avr_accumulate_outgoing_args): Return int.
	* config/avr/avr.c (avr_accumulate_outgoing_args): Return int.

From-SVN: r184475
This commit is contained in:
Georg-Johann Lay 2012-02-22 13:56:43 +00:00 committed by Georg-Johann Lay
parent 740ce3316f
commit 4595863423
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2012-02-22 Georg-Johann Lay <avr@gjlay.de>
* config/avr/avr.h (avr_accumulate_outgoing_args): Return int.
* config/avr/avr.c (avr_accumulate_outgoing_args): Return int.
2012-02-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* configure.ac (LIB_TLS_SPEC): Enforce use of alternate thread

View File

@ -654,7 +654,8 @@ avr_OS_main_function_p (tree func)
/* Implement `ACCUMULATE_OUTGOING_ARGS'. */
bool
int
avr_accumulate_outgoing_args (void)
{
if (!cfun)

View File

@ -679,7 +679,7 @@ struct GTY(()) machine_function
/* Define prototype here to avoid build warning. Some files using
ACCUMULATE_OUTGOING_ARGS (directly or indirectly) include
tm.h but not tm_p.h. */
extern bool avr_accumulate_outgoing_args (void);
extern int avr_accumulate_outgoing_args (void);
#define ACCUMULATE_OUTGOING_ARGS avr_accumulate_outgoing_args()
#define INIT_EXPANDERS avr_init_expanders()