diff options
author | Nick Clifton <nickc@redhat.com> | 2005-03-21 15:35:34 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-03-21 15:35:34 +0000 |
commit | 1a66a0171c77ebc0411841a6e654bbf8c8073d03 (patch) | |
tree | cafbc5f39e4510595571cde6fab99c5ec7ffdf0d /gas/config/tc-sh.c | |
parent | 3d0636914acceafb2d253bb7eb4548eb97fee21e (diff) | |
download | gdb-1a66a0171c77ebc0411841a6e654bbf8c8073d03.zip gdb-1a66a0171c77ebc0411841a6e654bbf8c8073d03.tar.gz gdb-1a66a0171c77ebc0411841a6e654bbf8c8073d03.tar.bz2 |
(sh_elf_final_processing): Fix compile time warning by providing a prototype
for sh_symbian_find_elf_flags.
Diffstat (limited to 'gas/config/tc-sh.c')
-rw-r--r-- | gas/config/tc-sh.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 74f02aa..e06237f 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -3777,7 +3777,11 @@ sh_elf_final_processing (void) else #elif defined TARGET_SYMBIAN if (1) - val = sh_symbian_find_elf_flags (valid_arch); + { + extern int sh_symbian_find_elf_flags (unsigned int); + + val = sh_symbian_find_elf_flags (valid_arch); + } else #endif /* HAVE_SH64 */ val = sh_find_elf_flags (valid_arch); |