* common.opt (m): Remove.
* opts.c (handle_option): Pass 'm' options to set_target_switch if
table lookup fails.
(common_handle_option): Remove OPT_m case.
From-SVN: r96650
+2005-03-18 Richard Sandiford <rsandifo@redhat.com>
+
+ * common.opt (m): Remove.
+ * opts.c (handle_option): Pass 'm' options to set_target_switch if
+ table lookup fails.
+ (common_handle_option): Remove OPT_m case.
+
2005-03-18 Kazu Hirata <kazu@cs.umass.edu>
* builtins.c (fold_builtin_bitop): Take decomposed arguments
Common JoinedOrMissing
Generate debug information in extended XCOFF format
-m
-Common Joined
-
o
Common Joined Separate
-o <file> Place output into <file>
}
if (opt_index == cl_options_count)
- goto done;
+ {
+#if defined (TARGET_OPTIONS) || defined (TARGET_SWITCHES)
+ if (opt[1] == 'm')
+ {
+ set_target_switch (argv[0] + 2);
+ result = 1;
+ }
+#endif
+ goto done;
+ }
option = &cl_options[opt_index];
set_debug_level (XCOFF_DEBUG, code == OPT_gxcoff_, arg);
break;
- case OPT_m:
- set_target_switch (arg);
- break;
-
case OPT_o:
asm_file_name = arg;
break;