mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-23 19:03:59 +08:00
cfgloopmanip, i386: Fix comment typos
I've noticed a comment typo in x86-tune.def and cfgloopmanip.cc has the same typo as well. 2024-03-26 Jakub Jelinek <jakub@redhat.com> * cfgloopmanip.cc (update_loop_exit_probability_scale_dom_bbs): Fix comment typo - multple -> multiple. * config/i386/x86-tune.def (X86_TUNE_ACCUMULATE_OUTGOING_ARGS): Likewise.
This commit is contained in:
parent
10accfde57
commit
94b91b2786
@ -669,7 +669,7 @@ update_loop_exit_probability_scale_dom_bbs (class loop *loop,
|
||||
+ old_exit_count - exit_edge->count ();
|
||||
}
|
||||
else
|
||||
/* If there are multple blocks, just scale. */
|
||||
/* If there are multiple blocks, just scale. */
|
||||
scale_dominated_blocks_in_loop (loop, exit_edge->src,
|
||||
exit_edge->src->count - exit_edge->count (),
|
||||
exit_edge->src->count - old_exit_count);
|
||||
|
@ -157,7 +157,7 @@ DEF_TUNE (X86_TUNE_FUSE_ALU_AND_BRANCH, "fuse_alu_and_branch",
|
||||
by push/pop instructions.
|
||||
This increase code size by about 5% in 32bit mode, less so in 64bit mode
|
||||
because parameters are passed in registers. It is considerable
|
||||
win for targets without stack engine that prevents multple push operations
|
||||
win for targets without stack engine that prevents multiple push operations
|
||||
to happen in parallel. */
|
||||
|
||||
DEF_TUNE (X86_TUNE_ACCUMULATE_OUTGOING_ARGS, "accumulate_outgoing_args",
|
||||
|
Loading…
Reference in New Issue
Block a user