aboutsummaryrefslogtreecommitdiff
path: root/gcc/targhooks.c
diff options
context:
space:
mode:
authorTobias Burnus <tobias@codesourcery.com>2020-11-04 14:31:34 +0100
committerTobias Burnus <tobias@codesourcery.com>2020-11-04 14:33:36 +0100
commit243492e2c69741b91dbfe3bba9b772f65fc9354c (patch)
tree9fcd92b9bcdfa7a7bbfeb13a000ded07b448c909 /gcc/targhooks.c
parent3ef33e756a65484a17abb95ef0d4133f80c014b1 (diff)
downloadgcc-243492e2c69741b91dbfe3bba9b772f65fc9354c.zip
gcc-243492e2c69741b91dbfe3bba9b772f65fc9354c.tar.gz
gcc-243492e2c69741b91dbfe3bba9b772f65fc9354c.tar.bz2
targhooks.c: Fix -fzero-call-used-regs 'sorry' typo
gcc/ChangeLog: * targhooks.c (default_zero_call_used_regs): Fix flag-name typo in sorry.
Diffstat (limited to 'gcc/targhooks.c')
-rw-r--r--gcc/targhooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
index 4e4d100..5b68a2a 100644
--- a/gcc/targhooks.c
+++ b/gcc/targhooks.c
@@ -1011,7 +1011,7 @@ default_zero_call_used_regs (HARD_REG_SET need_zeroed_hardregs)
{
issued_error = true;
sorry ("%qs not supported on this target",
- "-fzero-call-used_regs");
+ "-fzero-call-used-regs");
}
delete_insns_since (last_insn);
}