X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gas%2Ftc.h;h=da1738d67a811dd10c9a8ed761ab4d5a498fe2a3;hb=8f570d62882debe92524fff4f847dbdbe90fb5b9;hp=8715db3dc082e7e1f500ba402ed9cdff211e9f31;hpb=01e1a5bc1257af9e193d00fd4dce10fa3f1f3d75;p=deliverable%2Fbinutils-gdb.git diff --git a/gas/tc.h b/gas/tc.h index 8715db3dc0..da1738d67a 100644 --- a/gas/tc.h +++ b/gas/tc.h @@ -1,8 +1,6 @@ /* tc.h - target cpu dependent - Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 2000, 2001, 2003, - 2004, 2005, 2007 - Free Software Foundation, Inc. + Copyright (C) 1987-2020 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -26,8 +24,8 @@ extern const pseudo_typeS md_pseudo_table[]; -char * md_atof (int, char *, int *); -int md_parse_option (int, char *); +const char * md_atof (int, char *, int *); +int md_parse_option (int, const char *); void md_show_usage (FILE *); void md_assemble (char *); void md_begin (void); @@ -41,7 +39,7 @@ extern int md_short_jump_size; extern int md_long_jump_size; #endif -#ifdef USE_UNIQUE +#ifdef TE_PE /* The name of an external symbol which is used to make weak PE symbol names unique. */ extern const char * an_external_name; @@ -56,6 +54,9 @@ void md_create_short_jump (char *, addressT, addressT, fragS *, symbolS *); #ifndef md_pcrel_from long md_pcrel_from (fixS *); #endif +#ifndef md_pcrel_from_section +long md_pcrel_from_section (fixS *, segT); +#endif #ifndef md_operand void md_operand (expressionS *); #endif @@ -77,3 +78,6 @@ extern arelent *tc_gen_reloc (asection *, fixS *); #else extern arelent **tc_gen_reloc (asection *, fixS *); #endif + +extern const char FLT_CHARS[]; +extern const char EXP_CHARS[];