X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=gas%2Ftc.h;h=8be65fdc181351e8e04d4c6218c477e0840a978d;hb=3734bec8336f6f33927ab99460cb681035c2ca4f;hp=5386513553bd6a3141ca0da2ea75a6e2341f8e74;hpb=ec2655a6a75bc61d21e6f8ddc1e9f9027a8914dd;p=binutils-gdb.git diff --git a/gas/tc.h b/gas/tc.h index 5386513553b..8be65fdc181 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,12 +24,14 @@ 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); +#ifndef md_number_to_chars void md_number_to_chars (char *, valueT, int); +#endif void md_apply_fix (fixS *, valueT *, segT); #ifndef WORKING_DOT_WORD @@ -39,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; @@ -75,3 +75,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[];