From: Martin Liska Date: Fri, 23 Sep 2016 08:49:41 +0000 (+0200) Subject: Fix typo in IPA ICF X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fcbc975bed3ff53d2e4268eb507a073ce4a19fe2;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a18b196090c..79aa31b089f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-09-23 Martin Liska + + * ipa-icf.c (sem_variable::merge): Replace adress + with address. + 2016-09-23 Matthew Wahab * config/arm/arm-arches.def ("armv8.1-a"): Add FL_CRC32. diff --git a/gcc/ipa-icf.c b/gcc/ipa-icf.c index 0869756fe3e..3886fa66180 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; } diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5db2a1c83c6..998df2c65c7 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-09-23 Martin Liska + + * gcc.dg/ipa/pr77653.c: Replace adress + with address. + 2016-09-23 Martin Liska * gcc.target/i386/movbe-4.c: New test. diff --git a/gcc/testsuite/gcc.dg/ipa/pr77653.c b/gcc/testsuite/gcc.dg/ipa/pr77653.c index 8d117395a9d..16ae510bbb0 100644 --- a/gcc/testsuite/gcc.dg/ipa/pr77653.c +++ b/gcc/testsuite/gcc.dg/ipa/pr77653.c @@ -21,4 +21,4 @@ int main () } /* { dg-final { scan-ipa-dump "Equal symbols: 1" "icf" } } */ -/* { dg-final { scan-ipa-dump "Not unifying; adress of original may be compared." "icf" } } */ +/* { dg-final { scan-ipa-dump "Not unifying; address of original may be compared." "icf" } } */