* stmt.c (expand_case): Update a comment.
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 26 Oct 2004 17:25:32 +0000 (17:25 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 26 Oct 2004 17:25:32 +0000 (17:25 +0000)
From-SVN: r89591

gcc/ChangeLog
gcc/stmt.c

index 7ac8e6ada3be03952952f179c0a41aaf7c3b932d..270f1bdbb4d3a8367d581f4bef0f85714a93616a 100644 (file)
@@ -1,3 +1,7 @@
+2004-10-26  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * stmt.c (expand_case): Update a comment.
+
 2004-10-26  Kazu Hirata  <kazu@cs.umass.edu>
 
        * stmt.c (expand_case): Put an assertion that index_expr is
index 3e866cde918582fc718d41795ff3d418f131b4c5..f9efbfee0b235b8129bf77621249761ebb143f47 100644 (file)
@@ -2499,9 +2499,8 @@ expand_case (tree exp)
          if (MEM_P (index))
            index = copy_to_reg (index);
 
-         /* If the index expression is not constant we generate
-            a binary decision tree to select the appropriate
-            target code.  This is done as follows:
+         /* We generate a binary decision tree to select the
+            appropriate target code.  This is done as follows:
 
             The list of cases is rearranged into a binary tree,
             nearly optimal assuming equal probability for each case.