diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2016-06-13 18:10:35 +0200 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2016-06-13 18:10:35 +0200 |
commit | 1a0c3c346646689030e485cef0f71bd64515fc1f (patch) | |
tree | 76eaf7126ca9d4cbb1a5b19feec5dd3c132a8b2d /gcc/tree-cfg.c | |
parent | 10d2fc232412cda3b71b48b705440b828d6c80f5 (diff) | |
download | gcc-1a0c3c346646689030e485cef0f71bd64515fc1f.zip gcc-1a0c3c346646689030e485cef0f71bd64515fc1f.tar.gz gcc-1a0c3c346646689030e485cef0f71bd64515fc1f.tar.bz2 |
Fix CASE_CHAIN typos
gcc/
* tree-cfg.c (edge_to_cases_cleanup): Fix CASE_CHAIN typo.
* tree.def (CASE_LABEL_EXPR): Likewise.
From-SVN: r237384
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 40e524b..0fac49c 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -1126,7 +1126,7 @@ make_cond_expr_edges (basic_block bb) /* Called for each element in the hash table (P) as we delete the edge to cases hash table. - Clear all the TREE_CHAINs to prevent problems with copying of + Clear all the CASE_CHAINs to prevent problems with copying of SWITCH_EXPRs and structure sharing rules, then free the hash table element. */ |