aboutsummaryrefslogtreecommitdiff
path: root/gas/config/tc-i386.c
diff options
context:
space:
mode:
authorSteve Ellcey <sje@cup.hp.com>2013-01-09 18:31:21 +0000
committerSteve Ellcey <sje@cup.hp.com>2013-01-09 18:31:21 +0000
commitb37df7c42de167ce1a01ff6d98d90792f9d9543d (patch)
tree8dd42c3dadaed965761a2709c370470126ab8570 /gas/config/tc-i386.c
parentb2259038ba4e56f7b9e09f4e909596ef2d795b40 (diff)
downloadgdb-b37df7c42de167ce1a01ff6d98d90792f9d9543d.zip
gdb-b37df7c42de167ce1a01ff6d98d90792f9d9543d.tar.gz
gdb-b37df7c42de167ce1a01ff6d98d90792f9d9543d.tar.bz2
2013-01-09 Steve Ellcey <sellcey@mips.com>
* config/tc-i386.c (md_begin): Remove 'internal Error' from as_fatal calls. * config/tc-mips.c (internalError): Remove, replace with abort.
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r--gas/config/tc-i386.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index a0680d3..a74bfe6 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -2375,7 +2375,7 @@ md_begin (void)
(void *) core_optab);
if (hash_err)
{
- as_fatal (_("internal Error: Can't hash %s: %s"),
+ as_fatal (_("can't hash %s: %s"),
(optab - 1)->name,
hash_err);
}
@@ -2397,7 +2397,7 @@ md_begin (void)
{
hash_err = hash_insert (reg_hash, regtab->reg_name, (void *) regtab);
if (hash_err)
- as_fatal (_("internal Error: Can't hash %s: %s"),
+ as_fatal (_("can't hash %s: %s"),
regtab->reg_name,
hash_err);
}