diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2010-06-27 10:59:55 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2010-06-27 10:59:55 +0000 |
commit | 41a961e9918868f227325d767ce55c01c8171093 (patch) | |
tree | 264c862761f78c1ca51806808c3fcc8dc078c47a /gcc | |
parent | d860c8424cf2a29a5861bbffd35429ebf94e30ca (diff) | |
download | gcc-41a961e9918868f227325d767ce55c01c8171093.zip gcc-41a961e9918868f227325d767ce55c01c8171093.tar.gz gcc-41a961e9918868f227325d767ce55c01c8171093.tar.bz2 |
Fix typo
From-SVN: r161465
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/ada/gcc-interface/trans.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 021a07a..1c702a4 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -4,7 +4,7 @@ (gnu_switch_label_stack): Delete. (Case_Statement_to_gnu): Do not emit the goto at the end of a case if its associated block cannot fall through. Do not emit the final label - if no cases branche to it. + if no cases branch to it. * gcc-interface/Make-lang.in (ada/trans.o): Add $(TREE_FLOW_H). 2010-06-23 Thomas Quinot <quinot@adacore.com> diff --git a/gcc/ada/gcc-interface/trans.c b/gcc/ada/gcc-interface/trans.c index b79b4f0..30b5c72 100644 --- a/gcc/ada/gcc-interface/trans.c +++ b/gcc/ada/gcc-interface/trans.c @@ -2022,7 +2022,7 @@ Case_Statement_to_gnu (Node_Id gnat_node) } } - /* Now emit a definition of the label the cases branche to, if any. */ + /* Now emit a definition of the label the cases branch to, if any. */ if (may_fallthru) add_stmt (build1 (LABEL_EXPR, void_type_node, gnu_label)); gnu_result = build3 (SWITCH_EXPR, TREE_TYPE (gnu_expr), gnu_expr, |