re PR translation/52211 (Typo in translatable string: "-fdisble" ("-fdisable"))
authorRichard Guenther <rguenther@suse.de>
Mon, 13 Feb 2012 11:31:00 +0000 (11:31 +0000)
committerRichard Biener <rguenth@gcc.gnu.org>
Mon, 13 Feb 2012 11:31:00 +0000 (11:31 +0000)
2012-02-13  Richard Guenther  <rguenther@suse.de>

PR translation/52211
* passes.c (enable_disable_pass): Fix typo.

From-SVN: r184152

gcc/ChangeLog
gcc/passes.c

index 549af73..56f63f8 100644 (file)
@@ -1,3 +1,8 @@
+2012-02-13  Richard Guenther  <rguenther@suse.de>
+
+       PR translation/52211
+       * passes.c (enable_disable_pass): Fix typo.
+
 2012-02-13  Jakub Jelinek  <jakub@redhat.com>
 
        PR middle-end/52209
index a786881..bd10cbc 100644 (file)
@@ -709,7 +709,7 @@ enable_disable_pass (const char *arg, bool is_enable)
       if (is_enable)
         error ("unknown pass %s specified in -fenable", phase_name);
       else
-        error ("unknown pass %s specified in -fdisble", phase_name);
+        error ("unknown pass %s specified in -fdisable", phase_name);
       free (argstr);
       return;
     }