re PR translation/52211 (Typo in translatable string: "-fdisble" ("-fdisable"))

2012-02-13  Richard Guenther  <rguenther@suse.de>

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

From-SVN: r184152
This commit is contained in:
Richard Guenther 2012-02-13 11:31:00 +00:00 committed by Richard Biener
parent 205ec405fc
commit 1eb3478fe8
2 changed files with 6 additions and 1 deletions

View 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

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