summaryrefslogtreecommitdiff
path: root/gas/cgen.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/cgen.c')
-rw-r--r--gas/cgen.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/cgen.c b/gas/cgen.c
index 7c4d12f3c1..04d74245ab 100644
--- a/gas/cgen.c
+++ b/gas/cgen.c
@@ -148,7 +148,7 @@ gas_cgen_save_fixups (int i)
{
if (i < 0 || i >= MAX_SAVED_FIXUP_CHAINS)
{
- as_fatal("Index into stored_fixups[] out of bounds.");
+ as_fatal("index into stored_fixups[] out of bounds");
return;
}
stored_fixups[i].num_fixups_in_chain = num_fixups;
@@ -162,7 +162,7 @@ gas_cgen_restore_fixups (int i)
{
if (i < 0 || i >= MAX_SAVED_FIXUP_CHAINS)
{
- as_fatal("Index into stored_fixups[] out of bounds.");
+ as_fatal("index into stored_fixups[] out of bounds");
return;
}
num_fixups = stored_fixups[i].num_fixups_in_chain;
@@ -179,7 +179,7 @@ gas_cgen_swap_fixups (int i)
if (i < 0 || i >= MAX_SAVED_FIXUP_CHAINS)
{
- as_fatal("Index into stored_fixups[] out of bounds.");
+ as_fatal("index into stored_fixups[] out of bounds");
return;
}