diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-09-15 21:47:42 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-09-15 21:47:42 +0000 |
commit | bb6155b53d9224fbff366ba58a3c6d2dc29864b6 (patch) | |
tree | d4d34dc5616b90b724fca5c3ce824b0d7dc50bbc /gcc | |
parent | 6522685d9e64261297c3f7a3e4c4ecd9dad5299f (diff) | |
download | gcc-bb6155b53d9224fbff366ba58a3c6d2dc29864b6.zip gcc-bb6155b53d9224fbff366ba58a3c6d2dc29864b6.tar.gz gcc-bb6155b53d9224fbff366ba58a3c6d2dc29864b6.tar.bz2 |
i386-protos.h (i386_pe_dllexport_name_p, [...]): Add prototype.
* i386-protos.h (i386_pe_dllexport_name_p,
i386_pe_dllimport_name_p, i386_pe_unique_section,
i386_pe_declare_function_type, i386_pe_record_external_function,
i386_pe_record_exported_symbol, i386_pe_asm_file_end): Add
prototype.
* i386/t-cygwin (winnt.o): Depend on $(TM_P_H).
* i386/t-interix (winnt.o): Likewise.
From-SVN: r57176
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/config/i386/i386-protos.h | 7 | ||||
-rw-r--r-- | gcc/config/i386/t-cygwin | 2 | ||||
-rw-r--r-- | gcc/config/i386/t-interix | 2 |
4 files changed, 17 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e89d743..02f6227 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,13 @@ 2002-09-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + * i386-protos.h (i386_pe_dllexport_name_p, + i386_pe_dllimport_name_p, i386_pe_unique_section, + i386_pe_declare_function_type, i386_pe_record_external_function, + i386_pe_record_exported_symbol, i386_pe_asm_file_end): Add + prototype. + * i386/t-cygwin (winnt.o): Depend on $(TM_P_H). + * i386/t-interix (winnt.o): Likewise. + * v850-protos.h (v850_output_addr_const_extra): Prototype. 2002-09-15 Jason Thorpe <thorpej@wasabisystems.com> diff --git a/gcc/config/i386/i386-protos.h b/gcc/config/i386/i386-protos.h index 1431c73..f0bdf22 100644 --- a/gcc/config/i386/i386-protos.h +++ b/gcc/config/i386/i386-protos.h @@ -219,6 +219,13 @@ extern rtx ix86_tls_get_addr PARAMS ((void)); extern void x86_machine_dependent_reorg PARAMS ((rtx)); /* In winnt.c */ +extern int i386_pe_dllexport_name_p PARAMS ((const char *)); +extern int i386_pe_dllimport_name_p PARAMS ((const char *)); +extern void i386_pe_unique_section PARAMS ((tree, int)); +extern void i386_pe_declare_function_type PARAMS ((FILE *, const char *, int)); +extern void i386_pe_record_external_function PARAMS ((const char *)); +extern void i386_pe_record_exported_symbol PARAMS ((const char *, int)); +extern void i386_pe_asm_file_end PARAMS ((FILE *)); extern void i386_pe_encode_section_info PARAMS ((tree, int)); extern const char *i386_pe_strip_name_encoding PARAMS ((const char *)); extern const char *i386_pe_strip_name_encoding_full PARAMS ((const char *)); diff --git a/gcc/config/i386/t-cygwin b/gcc/config/i386/t-cygwin index 68d2ac5..6fcb834 100644 --- a/gcc/config/i386/t-cygwin +++ b/gcc/config/i386/t-cygwin @@ -14,7 +14,7 @@ LIBGCC2_INCLUDES = -I$(srcdir)/../winsup/include \ -I$(srcdir)/../winsup/cygwin/include \ -I$(srcdir)/../winsup/w32api/include -winnt.o: $(srcdir)/config/i386/winnt.c $(RTL_H) $(TREE_H) $(CONFIG_H) +winnt.o: $(srcdir)/config/i386/winnt.c $(RTL_H) $(TREE_H) $(CONFIG_H) $(TM_P_H) $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/config/i386/winnt.c # Don't run fixproto diff --git a/gcc/config/i386/t-interix b/gcc/config/i386/t-interix index 9153348..710de8b 100644 --- a/gcc/config/i386/t-interix +++ b/gcc/config/i386/t-interix @@ -1,6 +1,6 @@ LIB1ASMSRC = i386/cygwin.asm LIB1ASMFUNCS = _chkstk -winnt.o: $(srcdir)/config/i386/winnt.c +winnt.o: $(srcdir)/config/i386/winnt.c $(TM_P_H) $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/config/i386/winnt.c |