OSDN Git Service

2012-02-13 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Feb 2012 11:31:00 +0000 (11:31 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 13 Feb 2012 11:31:00 +0000 (11:31 +0000)
PR translation/52211
* passes.c (enable_disable_pass): Fix typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184152 138bc75d-0d04-0410-961f-82ee72b054a4

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;
     }