diff options
author | Georg-Johann Lay <avr@gjlay.de> | 2012-02-21 17:41:06 +0000 |
---|---|---|
committer | Georg-Johann Lay <gjl@gcc.gnu.org> | 2012-02-21 17:41:06 +0000 |
commit | 0545950be0752fdecf3ff75b56d413fedeaf483d (patch) | |
tree | 8686fa429529fdd03a6f03b0c4161904d3688d5e /gcc/config/avr/avr.h | |
parent | 23d2a817bfe45bc2067aedae02b61f9980bd2730 (diff) | |
download | gcc-0545950be0752fdecf3ff75b56d413fedeaf483d.zip gcc-0545950be0752fdecf3ff75b56d413fedeaf483d.tar.gz gcc-0545950be0752fdecf3ff75b56d413fedeaf483d.tar.bz2 |
avr-protos.h (avr_accumulate_outgoing_args): Move prototype from here to...
* config/avr/avr-protos.h (avr_accumulate_outgoing_args): Move
prototype from here to...
* config/avr/avr.h: ...here.
From-SVN: r184445
Diffstat (limited to 'gcc/config/avr/avr.h')
-rw-r--r-- | gcc/config/avr/avr.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h index 1b7bd35..6bc73de 100644 --- a/gcc/config/avr/avr.h +++ b/gcc/config/avr/avr.h @@ -676,6 +676,10 @@ struct GTY(()) machine_function required in order for pushes to be generated. */ #define PUSH_ROUNDING(X) (X) +/* 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); #define ACCUMULATE_OUTGOING_ARGS avr_accumulate_outgoing_args() #define INIT_EXPANDERS avr_init_expanders() |