diff options
author | Xionghu Luo <xionghuluo@tencent.com> | 2022-06-22 15:18:39 +0800 |
---|---|---|
committer | Xionghu Luo <xionghuluo@tencent.com> | 2022-06-23 11:00:02 +0800 |
commit | 3104a9fa7e704d859cec46afba8b51cb1a233b40 (patch) | |
tree | a5ff23c1ef965c74703ba246a0fa9c798e081952 /gcc/tree-ssa-loop-ivopts.cc | |
parent | 5d0cf158229acc8e3ebd9a12fa2a670d3c34f513 (diff) | |
download | gcc-3104a9fa7e704d859cec46afba8b51cb1a233b40.zip gcc-3104a9fa7e704d859cec46afba8b51cb1a233b40.tar.gz gcc-3104a9fa7e704d859cec46afba8b51cb1a233b40.tar.bz2 |
Fix typo
Fix typo and commit as obvious.
Signed-off-by: Xionghu Luo <xionghuluo@tencent.com>
gcc/ChangeLog:
* cgraph.cc (cgraph_edge::redirect_call_stmt_to_callee): Fix
typo.
* tree-ssa-loop-ivopts.cc (struct iv_cand): Likewise.
* tree-switch-conversion.h: Likewise.
Diffstat (limited to 'gcc/tree-ssa-loop-ivopts.cc')
-rw-r--r-- | gcc/tree-ssa-loop-ivopts.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-ivopts.cc b/gcc/tree-ssa-loop-ivopts.cc index 549168a..a6f926a 100644 --- a/gcc/tree-ssa-loop-ivopts.cc +++ b/gcc/tree-ssa-loop-ivopts.cc @@ -469,7 +469,7 @@ struct iv_cand bitmap inv_vars; /* The list of invariant ssa_vars used in step of the iv_cand. */ bitmap inv_exprs; /* If step is more complicated than a single ssa_var, - hanlde it as a new invariant expression which will + handle it as a new invariant expression which will be hoisted out of loop. */ struct iv *orig_iv; /* The original iv if this cand is added from biv with smaller type. */ |