* c-decl.c (do_case): Fix a typo.
authorJakub Jelinek <jakub@redhat.com>
Mon, 11 Sep 2000 20:25:44 +0000 (22:25 +0200)
committerJakub Jelinek <jakub@gcc.gnu.org>
Mon, 11 Sep 2000 20:25:44 +0000 (22:25 +0200)
From-SVN: r36327

gcc/ChangeLog
gcc/c-decl.c

index dd8593e88a1822f272d16bb0456b27a7569d25f3..a2e3b40e870d8a17b46bc252887406a1fd4b1cc3 100644 (file)
@@ -1,5 +1,7 @@
 2000-09-11  Jakub Jelinek  <jakub@redhat.com>
 
+       * c-decl.c (do_case): Fix a typo.
+
        * combine.c (simplify_if_then_else): Don't convert a == b ? b : a
        to a if the comparison is floating mode and not -ffast-math.
        * simplify-rtx.c (simplify_ternary_operation): Likewise.
index 8b006577f94947a408b6ac3de003a97e670e81ea..bc1857c1b345ce29d683535895489b5966a0b798 100644 (file)
@@ -6985,7 +6985,7 @@ do_case (low_value, high_value)
              error_with_decl (duplicate, "this is the first default label");
            }
          else
-           error ("dupicate case value");
+           error ("duplicate case value");
          if (high_value != NULL_TREE)
            error_with_decl (duplicate,
                             "this is the first entry for that value");