aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-cris.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2023-01-12 16:46:23 +1030
committerAlan Modra <amodra@gmail.com>2023-01-12 17:20:21 +1030
commit4981a31d523de41713fc40aa8101b4d73d44df57 (patch)
tree17ff496b3e34113f137fe2b829cdba06a79ed2bc /gas/config/tc-cris.c
parent2070fc67bad14bd12c722a7a6baffcafd55e862a (diff)
downloadgdb-4981a31d523de41713fc40aa8101b4d73d44df57.zip
gdb-4981a31d523de41713fc40aa8101b4d73d44df57.tar.gz
gdb-4981a31d523de41713fc40aa8101b4d73d44df57.tar.bz2
Use __func__ rather than __FUNCTION__
We already use C99's __func__ in places, use it more generally. This patch doesn't change uses in the testsuite. I've also left one in gold.h that is protected by GCC_VERSION < 4003. If any of the remaining uses bothers anyone I invite patches. bfd/ * bfd-in.h: Replace __FUNCTION__ with __func__. * elf32-bfin.c: Likewise. * elfnn-aarch64.c: Likewise. * elfxx-sparc.c: Likewise. * bfd-in2.h: Regenerate. gas/ * config/tc-cris.c: Replace __FUNCTION__ with __func__. * config/tc-m68hc11.c: Likewise. * config/tc-msp430.c: Likewise. gold/ * dwp.h: Replace __FUNCTION__ with __func__. * gold.h: Likewise, except for use inside GCC_VERSION < 4003. ld/ * emultempl/pe.em: Replace __FUNCTION__ with __func__. * emultempl/pep.em: Likewise. * pe-dll.c: Likewise.
Diffstat (limited to 'gas/config/tc-cris.c')
-rw-r--r--gas/config/tc-cris.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gas/config/tc-cris.c b/gas/config/tc-cris.c
index 3538051..b9631bb 100644
--- a/gas/config/tc-cris.c
+++ b/gas/config/tc-cris.c
@@ -548,11 +548,11 @@ cris_relax_frag (segT seg ATTRIBUTE_UNUSED, fragS *fragP,
if (fragP->fr_symbol == NULL
|| S_GET_SEGMENT (fragP->fr_symbol) != absolute_section)
as_fatal (_("internal inconsistency problem in %s: fr_symbol %lx"),
- __FUNCTION__, (long) fragP->fr_symbol);
+ __func__, (long) fragP->fr_symbol);
symbolP = fragP->fr_symbol;
if (symbol_resolved_p (symbolP))
as_fatal (_("internal inconsistency problem in %s: resolved symbol"),
- __FUNCTION__);
+ __func__);
aim = S_GET_VALUE (symbolP);
break;
@@ -562,7 +562,7 @@ cris_relax_frag (segT seg ATTRIBUTE_UNUSED, fragS *fragP,
default:
as_fatal (_("internal inconsistency problem in %s: fr_subtype %d"),
- __FUNCTION__, fragP->fr_subtype);
+ __func__, fragP->fr_subtype);
}
/* The rest is stolen from relax_frag. There's no obvious way to
@@ -962,7 +962,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
case ENCODE_RELAX (STATE_BASE_PLUS_DISP_PREFIX, STATE_BYTE):
if (symbolP == NULL)
as_fatal (_("internal inconsistency in %s: bdapq no symbol"),
- __FUNCTION__);
+ __func__);
opcodep[0] = S_GET_VALUE (symbolP);
var_part_size = 0;
break;
@@ -975,7 +975,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT sec ATTRIBUTE_UNUSED,
opcodep[1] |= BDAP_INCR_HIGH;
if (symbolP == NULL)
as_fatal (_("internal inconsistency in %s: bdap.w with no symbol"),
- __FUNCTION__);
+ __func__);
md_number_to_chars (var_partp, S_GET_VALUE (symbolP), 2);
var_part_size = 2;
break;
@@ -4237,7 +4237,7 @@ s_cris_dtpoff (int bytes)
if (bytes != 4)
as_fatal (_("internal inconsistency problem: %s called for %d bytes"),
- __FUNCTION__, bytes);
+ __func__, bytes);
expression (&ex);