diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-04-18 18:10:17 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-04-18 18:10:17 +0000 |
commit | 308e3ba6f57485756135cd8c8262a3a076c01bd0 (patch) | |
tree | c4422aab80d919bff3b8a74167a802ddc668d406 /gcc/tree-cfg.c | |
parent | 27dd0a95d17e416f2f519c9ea19c0de7d0d7dc02 (diff) | |
download | gcc-308e3ba6f57485756135cd8c8262a3a076c01bd0.zip gcc-308e3ba6f57485756135cd8c8262a3a076c01bd0.tar.gz gcc-308e3ba6f57485756135cd8c8262a3a076c01bd0.tar.bz2 |
tree.def (CASE_LABEL_EXPR): Fix documentation, mention all operands.
* tree.def (CASE_LABEL_EXPR): Fix documentation, mention all operands.
* tree-cfg.c (edge_to_cases): Fix documentation.
From-SVN: r186575
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 1f59c03..7245566 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -56,7 +56,7 @@ static const int initial_cfg_capacity = 20; /* This hash table allows us to efficiently lookup all CASE_LABEL_EXPRs which use a particular edge. The CASE_LABEL_EXPRs are chained together - via their TREE_CHAIN field, which we clear after we're done with the + via their CASE_CHAIN field, which we clear after we're done with the hash table to prevent problems with duplication of GIMPLE_SWITCHes. Access to this list of CASE_LABEL_EXPRs allows us to efficiently |