From 41a961e9918868f227325d767ce55c01c8171093 Mon Sep 17 00:00:00 2001 From: Eric Botcazou Date: Sun, 27 Jun 2010 10:59:55 +0000 Subject: [PATCH] Fix typo From-SVN: r161465 --- gcc/ada/ChangeLog | 2 +- 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 021a07a93b5..1c702a4e216 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 diff --git a/gcc/ada/gcc-interface/trans.c b/gcc/ada/gcc-interface/trans.c index b79b4f0bc5d..30b5c72493f 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,