diff options
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 8f8fbf8..98aae30 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -507,9 +507,7 @@ c_decode_option (argc, argv) strings_processed = cpp_handle_option (parse_in, argc, argv); - if (!strcmp (p, "-lang-objc")) - c_language = clk_objective_c; - else if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional")) + if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional")) { flag_traditional = 1; flag_writable_strings = 1; |