> On Tue, Sep 22, 2020 at 10:13:46AM +0200, Jakub Jelinek via Gcc-patches wrote: > > --- gcc/params.opt.jj 2020-09-21 11:15:53.816516949 +0200 > > +++ gcc/params.opt 2020-09-22 09:59:37.121115589 +0200 > > @@ -882,7 +882,7 @@ Maximum number of refs stored in each mo > > > > -param=modref-max-tests= > > Common Joined UInteger Var(param_modref_max_tests) Init(64) > > -Maximum number of tests perofmed by modref query > > +Maximum number of tests perofmed by modref query. > > And seeing the above typo led me to do some spell checking around. > Here is the result, committed as obvious to trunk: > > 2020-09-22 Jakub Jelinek <ja...@redhat.com> > > gcc/ > * params.opt (--param=modref-max-tests=): Fix typo in help text: > perofmed -> performed. > * common.opt: Fix typo: incrmeental -> incremental. > * ipa-modref.c: Fix typos: recroding -> recording, becaue -> because, > analsis -> analysis. > (class modref_summaries): Fix typo: betweehn -> between. > (analyze_call): Fix typo: calle -> callee. > (read_modref_records): Fix typo: expcted -> expected. > (pass_ipa_modref::execute): Fix typo: calle -> callee. > gcc/c-family/ > * c.opt (Wbuiltin-declaration-mismatch): Fix typo in variable name: > warn_builtin_declaraion_mismatch -> warn_builtin_declaration_mismatch.
Thanks a lot and sorry for these. Honza