diff options
author | Martin Liska <mliska@suse.cz> | 2016-09-23 10:49:41 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2016-09-23 08:49:41 +0000 |
commit | fcbc975bed3ff53d2e4268eb507a073ce4a19fe2 (patch) | |
tree | 1261a63c6ac5d8ea89f3f2d397fe8bb6c9c8eeb7 /gcc/ipa-icf.c | |
parent | 4040b89af817696c51ff8a2f7ee983c2c38be345 (diff) | |
download | gcc-fcbc975bed3ff53d2e4268eb507a073ce4a19fe2.zip gcc-fcbc975bed3ff53d2e4268eb507a073ce4a19fe2.tar.gz gcc-fcbc975bed3ff53d2e4268eb507a073ce4a19fe2.tar.bz2 |
Fix typo in IPA ICF
* ipa-icf.c (sem_variable::merge): Replace adress
with address.
* gcc.dg/ipa/pr77653.c: Replace adress
with address.
From-SVN: r240399
Diffstat (limited to 'gcc/ipa-icf.c')
-rw-r--r-- | gcc/ipa-icf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ipa-icf.c b/gcc/ipa-icf.c index 0869756..3886fa6 100644 --- a/gcc/ipa-icf.c +++ b/gcc/ipa-icf.c @@ -2225,7 +2225,7 @@ sem_variable::merge (sem_item *alias_item) { if (dump_file) fprintf (dump_file, - "Not unifying; adress of original may be compared.\n\n"); + "Not unifying; address of original may be compared.\n\n"); return false; } |