aboutsummaryrefslogtreecommitdiff
path: root/gcc
AgeCommit message (Collapse)AuthorFilesLines
2003-07-14re PR c++/11493 (tree check ICE in error.c)Mark Mitchell22-744/+726
* cp-tree.h (cp_id_kind): New type. (unqualified_name_lookup_error): Change prototype. (unqualified_fn_lookup_error): New function. (do_identifier): Remove. (do_scoped_id): Likewise. (tsubst_copy_and_build): Change prototype. (reregister_specialization): New function. (perform_koenig_lookup): Likewise. (finish_id_expression): Likewise. * call.c (build_method_call): Adjust call to unqualified_name_lookup_error. * decl.c (duplicate_decls): Use reregister_specialization. * lex.c (is_global): Remove. (unqualified_name_lookup_error): Return a value. (do_identifier): Remove. (do_scoped_id): Likewise. (identifier_typedecl_value): Remove. (unqualified_fn_lookup_error): New function. * parser.c (cp_parser_id_kind): Remove. (cp_parser_non_constant_id_expression): Remove. (cp_parser_primary_expression): Use finish_id_expression. (cp_parser_class_or_namespace_name): Use cp_id_kind, not cp_parser_id_kind. (cp_parser_postfix_expression): Use perform_koenig_lookup. (cp_parser_template_argument): Use cp_id_kind. (cp_parser_fold_non_dependent_expr): Adjust call to tsubst_copy_and_build. * pt.c (unregister_specialization): Rename to ... (reregister_specialization): This. (tsubst_friend_function): Use it. (maybe_fold_nontype_arg): Adjust call to tsubst_copy_and_build. (tsubst_qualified_id): Likewise. (tsubst_expr): Likewise. (tsubst_copy_and_build): Add function_p parameter. Use finish_id_expression. Introduce RECUR macro. (tsubst_non_call_postfix_expression): New function. (regenerate_decl_from_template): Use reregister_specialization. * semantics.c (perform_koenig_lookup): New function. (finish_id_expression): Likewise. PR c++/11493 PR c++/11495 * g++.dg/parse/template9.C: Likewise. * g++.dg/template/crash4.C: New test. * g++.dg/template/koenig1.C: Likewise. * g++.old-deja/g++.benjamin/tem03.C: Adjust error markers. * g++.old-deja/g++.benjamin/tem06.C: Declare "x". * g++.old-deja/g++.jason/overload33.C: Use this-> when calling functions. * g++.old-deja/g++.jason/template36.C: Likewise. * g++.old-deja/g++.mike/p1989.C: Likewise. * g++.old-deja/g++.pt/lookup2.C: Use -fpermissive when compiling. * g++.old-deja/g++.pt/ttp20.C: Use this->. * g++.old-deja/g++.pt/ttp21.C: Use this->. * g++.old-deja/g++.pt/typename13.C: Use -fpermissive when compiling. * g++.old-deja/g++.pt/union2.C: Use this->. From-SVN: r69316
2003-07-14gthr-win32.c (__GTHREAD_HIDE_WIN32API): Define to 1.Aaron W. LaFramboise2-5/+5
2003-07-13 Aaron W. LaFramboise <awlaframboise@aol.com> * config/i386/gthr-win32.c (__GTHREAD_HIDE_WIN32API): Define to 1. (This was previously, erroneously listed as checked in on 2003-06-29) From-SVN: r69313
2003-07-14Daily bump.GCC Administrator1-1/+1
From-SVN: r69311
2003-07-13expr.c (expand_expr, [...]): If reg...Richard Kenner2-28/+35
* expr.c (expand_expr, case COMPONENT_REF): If reg, copy OP0 to MEM both if OFFSET specified and if result BLKmode for ARRAY_RANGE_REF. From-SVN: r69308
2003-07-13re PR other/11123 (Some option names are truncated in gcc --help -v)Nathanael Nerode2-6/+11
PR other/11123 * toplev.c: Don't cut off option names. From-SVN: r69303
2003-07-13c-decl.c (link_hash_hash): Avoid warning about casting pointer to integer of ↵Andreas Jaeger2-1/+6
different size. * c-decl.c (link_hash_hash): Avoid warning about casting pointer to integer of different size. From-SVN: r69302
2003-07-13combine.c (simplify_comparison): Convert (ne (and (not X) 1) 0) to (eq (and ↵Kazu Hirata2-0/+16
X 1) 0). * combine.c (simplify_comparison): Convert (ne (and (not X) 1) 0) to (eq (and X 1) 0). From-SVN: r69300
2003-07-13* config.gcc: Add pmmintrin.h for x86_64-*-*.Andreas Jaeger2-1/+5
From-SVN: r69299
2003-07-13Makefile.in (LIBCPP_DEPS): Remove coretypes.h and $(TM_H).Zack Weinberg20-55/+56
* Makefile.in (LIBCPP_DEPS): Remove coretypes.h and $(TM_H). (hashtable.o, line-map.o, mkdeps.o): Likewise, from dependency list. Move these all together down by cpplib. * cpplib.h: Don't refer to MAX_WCHAR_TYPE_SIZE when determining definition of CPPCHAR_SIGNED_T. * cppcharset.c, cpperror.c, cppexp.c, cppfiles.c, cpphash.c, cppinit.c * cpplex.c, cpplib.c, cppmacro.c, cpppch.c, cpptrad.c, hashtable.c * line-map.c, mkdeps.c: Don't include coretypes.h or tm.h. * cpphash.c (_cpp_init_hashtable): Don't use gcc_obstack_init. * cppinit.c (cpp_create_reader): Likewise. * cpphash.h (scan_out_logical_line): Rename _cpp_scan_out_logical_line. * cpptrad.c: Likewise. All callers changed. * cpplib.c: All callers changed. * c-ppoutput.c: Replace 'uchar' with 'unsigned char' throughout. * hashtable.h: Define GTY(x) to nothing here too. From-SVN: r69298
2003-07-13stor-layout.c (compute_record_mode): Remove very obsolete test that forces ↵Richard Kenner2-15/+5
BLKmode for records with fields crossing... * stor-layout.c (compute_record_mode): Remove very obsolete test that forces BLKmode for records with fields crossing word boundary. From-SVN: r69297
2003-07-13* Makefile.in: Remove orphan reference to acconfig.h.Zack Weinberg2-1/+5
From-SVN: r69295
2003-07-13pt.c (push_access_scope_real): Remove.Kriang Lerdsuwanakij2-54/+35
* pt.c (push_access_scope_real): Remove. (push_access_scope): Move code from push_access_scope_real. (pop_access_scope): Don't check for TEMPLATE_DECL. (instantiate_template): Defer access checking during template substitution. (regenerate_decl_from_template): Tidy. From-SVN: r69291
2003-07-13document covariants implementedNathan Sidwell1-0/+3
From-SVN: r69287
2003-07-13* cgraphunit.c: Convert prototypes to ISO C90.Andreas Jaeger2-39/+30
From-SVN: r69285
2003-07-13inclhack.def (avoid_wchar_t_type): Use __cplusplus bypass (for OpenBSD).Nathanael Nerode3-4/+10
* fixinc/inclhack.def (avoid_wchar_t_type): Use __cplusplus bypass (for OpenBSD). * fixinc/fixincl.x: Rebuild. From-SVN: r69284
2003-07-13configure.in: Always define HAVE_AS_GOTOFF_IN_DATA for i?86-*-*.Zack Weinberg3-31/+40
* configure.in: Always define HAVE_AS_GOTOFF_IN_DATA for i?86-*-*. Use correct name of cache variable. * configure: Regenerate. From-SVN: r69283
2003-07-13Daily bump.GCC Administrator1-1/+1
From-SVN: r69281
2003-07-12alpha.c: Fix comment typos.Kazu Hirata8-25/+35
* config/alpha/alpha.c: Fix comment typos. * config/alpha/alpha.md: Likewise. * config/arm/arm.c: Likewise. * config/arm/arm.md: Likewise. * config/arm/lib1funcs.asm: Likewise. * config/avr/avr.md: Likewise. * config/arm/README-interworking: Fix typos. From-SVN: r69277
2003-07-12c-format.c: Fix comment formatting.Kazu Hirata9-9/+20
* c-format.c: Fix comment formatting. * c-typeck.c: Likewise. * coverage.c: Likewise. * cppcharset.c: Likewise. * cpplib.c: Likewise. * dbxout.c: Likewise. * gcov-io.h: Likewise. * toplev.c: Likewise. From-SVN: r69276
2003-07-12inclhack.def (alpha_sbrk): Note that OpenBSD needs this fix.Nathanael Nerode2-0/+6
* fixinc/inclhack.def (alpha_sbrk): Note that OpenBSD needs this fix. From-SVN: r69274
2003-07-12Regenerate again, oopsZack Weinberg1-0/+3
From-SVN: r69273
2003-07-12aclocal.m4 (gcc_AC_CHECK_TYPE): Clone of AC_CHECK_TYPE...Zack Weinberg6-1407/+1208
* aclocal.m4 (gcc_AC_CHECK_TYPE): Clone of AC_CHECK_TYPE, uses three-argument AC_DEFINE so no acconfig.h entries are needed. (_gcc_COMPUTE_GAS_VERSION): Also provide gcc_cv_gas_vers which contains the GAS version number as a scaled integer. (gcc_GAS_VERSION_GTE_IFELSE): Use gcc_cv_gas_vers. Add ability to check for ELF assembler. (gcc_GAS_CHECK_FEATURE): New macro. * configure.in: Use gcc_AC_CHECK_TYPE. Rewrite all assembler feature checks using gcc_GAS_CHECK_FEATURE. Use three-argument AC_DEFINE everywhere. * acconfig.h: Deleted. * config.in, configure: Regenerate. From-SVN: r69272
2003-07-12(fix dumb changelog omission)Nathanael Nerode1-0/+1
(fix dumb changelog omission) * fixinc/fixincl.x: Regenerate. From-SVN: r69271
2003-07-12inclhack.def (struct_sockaddr): Avoid "fixing" sockaddr_in (on OpenBSD).Nathanael Nerode3-6/+16
* fixinc/inclhack.def (struct_sockaddr): Avoid "fixing" sockaddr_in (on OpenBSD). From-SVN: r69270
2003-07-12* fixinc/inclhack.def (gnu_types): Improve comment.Nathanael Nerode2-1/+10
From-SVN: r69269
2003-07-12* Make-lang.in (treelang/tree-convert.o): Depend on TM_H.Andreas Jaeger2-2/+6
From-SVN: r69268
2003-07-12fp-test.c (main): Use ISO C90 prototype.Andreas Jaeger8-384/+273
* fp-test.c (main): Use ISO C90 prototype. * version.c: Remove unneded include of ansidecl.h. * cgraph.h: Convert prototypes to ISO C90. * cgraph.c: Likewise. * fix-header.c: Likewise. * ra.h: Likewise. * protoize.c: Likewise. From-SVN: r69265
2003-07-12cgraphunit.c (cgraph_inlined_into, [...]): Fix warning.Jan Hubicka2-2/+7
* cgraphunit.c (cgraph_inlined_into, cgraph_inlined_calees): Fix warning. From-SVN: r69264
2003-07-12cgraph.c (cgraph_max_uid): New global variable.Jan Hubicka8-125/+884
* cgraph.c (cgraph_max_uid): New global variable. (cgraph_node): Set uid field. (create_edge): Keep inline flags consistent. (dump_cgraph): Dump more info. * cgraph.h (struct cgraph_local_info): Remove inline_many and can_inline_once; add inlinable, disgread_inline_limits, and self_insn (struct cgraph_global_info): Add insns, calls, cloned_times, will_be_output. (struct cgraph_node): Add uid. (struct cgraph_edge): Add inline_call. (cgraph_max_uid, cgraph_inline_p): Declare. * cgraph.c: Include params.h and fibheap.h (cgraph_mark_functions_to_inline_once): Kill. (INSNS_PER_CALL): New constant. (ncalls_inlined, nfunctions_inlined, initial_insns, overall_insns): New static variables. (cgraph_finalize_function): Do not analyze inlining. (cgraph_finalize_compilation_unit): Set inlining attributes. (cgraph_mark_functions_to_output): More consistency checks. (cgraph_optimize_function): Set current_function_decl to NULL. (cgraph_expand_function): Use new inline flags. (cgraph_postorder): Expand from cgraph_expand_functions. (INLINED_TIMES, SET_INLINED_TIMES): New macros. (cgraph_inlined_into, cgraph_inlined_callees, cgraph_estimate_size_after_inlining, cgraph_estimate_growth, cgraph_mark_inline, cgraph_check_inline_limits, cgraph_default_inline_p, cgraph_decide_inling_of_small_functions, cgraph_decide_inlining, cgraph_inline_p): New functions. * params.def (PARAM_LARGE_FUNCTION_INSNS, PARAM_LARGE_FUNCTION_GROWTH, PARAM_INLINE_UNIT_GROWTH): New parameters. * tree-inline.c (struct inline_data): New field current_decl. (expand_call_inline): Avoid forward declarations; use inlinable_function_p. (optimize_inline_calls): Set id.current_decl. Co-Authored-By: Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> From-SVN: r69262
2003-07-11Patch from Andrew Pinksi.Andrew Pinski3-193/+197
* configure.in: Remove wrongly added definition of local_prefix. * configure: Regenerate. From-SVN: r69261
2003-07-12Daily bump.GCC Administrator1-1/+1
From-SVN: r69259
2003-07-11* rtl.def (NOTE): Do not use padding.Dan Nicolaescu2-4/+6
From-SVN: r69257
2003-07-11Patch from Dara Hazeghi.Dara Hazeghi2-1/+6
* doc/install.tex: Update required binutils for i?86-*-linux* From-SVN: r69255
2003-07-11re PR c++/11437 (ICE in lookup_name_real)Nathanael Nerode2-1/+8
PR c++/11437 * operators.def: Add definitions for __imag__, __real__. From-SVN: r69254
2003-07-11* Makefile.in (stage1_build): Force OBJS-onestep=OBJS.Richard Henderson2-1/+6
From-SVN: r69249
2003-07-11varasm.c (make_decl_rtl): Treat decls with a DECL_CONTEXT of ↵Mark Mitchell2-1/+8
TRANSLATION_UNIT_DECL as top_level. * varasm.c (make_decl_rtl): Treat decls with a DECL_CONTEXT of TRANSLATION_UNIT_DECL as top_level. From-SVN: r69244
2003-07-11optabs.c (prepare_cmp_insn): Try cmpmemM first if it exists, then fall back ↵Jakub Jelinek10-23/+135
to cmpstrM. * optabs.c (prepare_cmp_insn): Try cmpmemM first if it exists, then fall back to cmpstrM. * builtins.c (expand_builtin_memcmp): Likewise. * config/s390/s390-protos.h (s390_expand_cmpstr): Rename to... (s390_expand_cmpmem): ... this. * config/s390/s390.md (cmpmemdi, cmpmemsi, cmpmem_short_64, cmpmem_short_31, cmpmem_long_64, cmpmem_long_31): Renamed from cmpstr* patterns. Rename call to s390_expand_cmpstr to s390_expand_cmpmem. * config/s390/s390.c (s390_expand_cmpstr): Rename to... (s390_expand_cmpstr): ... this. Rename cmpstr* instructions to cmpmem*. * config/i370/i370.md (cmpmemsi, cmpmemsi_1): Renamed from cmpstr* patterns. * doc/md.texi (cmpstrM): Describe as String compare insn, not Block compare insn. (cmpmemM): Add. * gcc.dg/20030711-1.c: New test. From-SVN: r69243
2003-07-11freebsd.h (SET_ASM_OP): Remove.Loren J. Rittle2-15/+21
* config/i386/freebsd.h (SET_ASM_OP): Remove. (SUBTARGET_OVERRIDE_OPTIONS): Handle TARGET_64BIT case. (ASM_COMMENT_START, ASM_APP_ON, ASM_APP_OFF, DBX_REGISTER_NUMBER MCOUNT_NAME, SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE_SIZE): Whitespace. From-SVN: r69242
2003-07-11function.c (assign_parms): Don't recombine complex args if fnargs is ↵Richard Henderson2-11/+33
unchanged from orig_fnargs. * function.c (assign_parms): Don't recombine complex args if fnargs is unchanged from orig_fnargs. (split_complex_args): Return args without complex before copying. Re-layout the modified parameters. From-SVN: r69236
2003-07-11regclass.c (choose_hard_reg_mode): Add third argument.J"orn Rennecke6-12/+31
* regclass.c (choose_hard_reg_mode): Add third argument. Changed all callers. * rtl.h (choose_hard_reg_mode): Update declaration. * dwarf2out.c (expand_builtin_init_dwarf_reg_sizes): Take HARD_REGNO_CALL_PART_CLOBBERED into account. From-SVN: r69234
2003-07-11re PR c++/11050 ("some string" __FUNCTION__ is accepted)Nathan Sidwell6-187/+220
cp: PR c++/11050 * parser.c (cp_parser_expression_list): Rename to ... (cp_parser_parenthesized_expression_list): ... here. Add attribute parameter, parse the surounding parentheses. (cp_parser_skip_to_closing_parenthesis): Add recover and or_comma parameters. Return int. (cp_parser_skip_to_closing_parenthesis or comma): Remove. (cp_parser_postfix_expression): Adjust function call parsing. (cp_parser_new_placement): Adjust. (cp_parser_new_initializer): Likewise. (cp_parser_cast_expression): Likewise. (cp_parser_selection_statement): Likewise. (cp_parser_mem_initializer): Likewise. (cp_parser_asm_definition): Likewise. (cp_parser_init_declarator): Likewise. (cp_parser_declarator): Make cdtor_or_conv_p an int ptr. (cp_parser_direct_declarator): Likewise. Check for a parameter list on cdtors & conv functions. (cp_parser_initializer): Adjust. (cp_parser_member_declaration): Adjust. (cp_parser_attribute_list): Move code into cp_parser_parens_expression_list. (cp_parser_functional_cast): Adjust. * pt.c (type_dependent_expression_p): Erroneous expressions are non-dependent. testsuite: PR c++/11050 * g++.dg/parse/args1.C: New test. * g++.pt/defarg8.C: Change expected errors. From-SVN: r69230
2003-07-11re PR c++/8164 (ICE when using different const expressions as template ↵Mark Mitchell2-0/+14
parameter) PR c++/8164 * decl.c (duplicate_decls): Avoid mangling names unnecessarily. PR c++/8164 * g++.dg/template/nontype2.C: New test. PR c++/10558 * g++.dg/parse/template8.C: New test. From-SVN: r69229
2003-07-11re PR c++/10558 (Segfault on illegal use of template without template args)Mark Mitchell2-0/+19
PR c++/10558 * g++.dg/parse/template8.C: New test. From-SVN: r69226
2003-07-11Index: ChangeLogGeoffrey Keating32-448/+1150
2003-07-10 Geoffrey Keating <geoffk@apple.com> * c-decl.c (finish_decl): Handle 'used' here... * cgraphunit.c (cgraph_finalize_function): ... and here ... * c-common.c: (handle_used_attribute): ... not here. * configure.in (onstep): Support --enable-intermodule. * Makefile.in (OBJS-common): New. (OBJS-md): New. (OBJS-archive): New. (OBJS): Build from OBJS-common, OBJS-md, OBJS-archive. (OBJS-onestep): New. (libbackend.a): Support @onestep@. (libbackend.o): New. * configure: Regenerate. * c-common.h (c_reset_state): New prototype. (c_parse_file): New prototype. (finish_file): Move prototype from c-tree.h. * c-decl.c: Include <hashtab.h>. (builtin_decls): New. (current_file_decl): New. (duplicate_decls): Add extra parameter. Change all callers. Don't output duplicate common symbols. (link_hash_hash): New. (link_hash_eq): New. (poplevel): Handle popping of the top level. (warn_if_shadowing): Handle TRANSLATION_UNIT_DECL. (pushdecl): Set DECL_CONTEXT to TRANSLATION_UNIT_DECL if appropriate. (pushdecl_top_level): Likewise. (redeclaration_error_message): Handle TRANSLATION_UNIT_DECL. (c_init_decl_processing): Create TRANSLATION_UNIT_DECL. (finish_decl): Handle TRANSLATION_UNIT_DECL. (merge_translation_unit_decls): New. (c_write_global_declarations): New. (c_reset_state): New. (implicitly_declare): Handle TRANSLATION_UNIT_DECL. * c-lang.c (LANG_HOOKS_WRITE_GLOBALS): New. * c-objc-common.c (c_cannot_inline_tree_fn): Handle TRANSLATION_UNIT_DECL. (c_objc_common_finish_file): Call merge_translation_unit_decls. * c-opts.c (in_fnames): Rename from in_fname. (c_common_decode_option): Handle multiple input filenames. (c_common_post_options): Likewise. (c_common_parse_file): Likewise; also, call c_parse_file rather than yyparse. * c-parse.in: Move cleanup code to c_parse_file. (free_parser_stacks): Move contents to c_parse_file. (c_parse_file): New. * c-tree.h (union lang_tree_node): Chain along TYPE_NEXT_VARIANT for integer types. (C_DECL_FILE_SCOPE): New. (finish_file): Move prototype to c-common.h. (merge_translation_unit_decls): New prototype. (comptypes): Add extra parameter to prototype. (c_write_global_declarations): New prototype. * c-typeck.c (tagged_types_tu_compatible_p): New. (function_types_compatible_p): Add extra parameter, change all callers. (type_lists_compatible_p): Likewise. (comptypes): Likewise. (struct tagged_tu_seen): New. (tagged_tu_seen_base): New. (build_unary_op): Handle TRANSLATION_UNIT_DECL. (c_mark_addressable): Remove #if 0 code. * calls.c (special_function_p): Handle TRANSLATION_UNIT_DECL, add comment explaining why it shouldn't have to. * cgraph.h (struct cgraph_node): Add chain_next and chain_prev GTY options. * cppinit.c (cpp_read_next_file): New. (cpp_read_main_file): Use it. * cpplib.c (undefine_macros): New. (cpp_undef_all): New. * cpplib.h (cpp_read_next_file): Prototype. (cpp_undef_all): Prototype. * langhooks-def.h (write_global_declarations): Remove prototype. * toplev.h (write_global_declarations): Add prototype. * tree.c (decl_type_context): Use switch statement, handle TRANSLATION_UNIT_DECL. * tree.def: Update documentation for TRANSLATION_UNIT_DECL. (TRANSLATION_UNIT_DECL): New kind of tree. * tree.h: Update documentation for TRANSLATION_UNIT_DECL. * Makefile.in (c-decl.o): Add $(HASHTAB_H) to dependencies. * doc/invoke.texi: Make attempt to document new functionality. 2003-05-19 Per Bothner <bothner@apple.com> * gcc.c (combine_inputs): New. (process_command): Set combine_inputs. (do_spec_1): Handle combine_inputs. (main): Likewise. Index: cp/ChangeLog 2003-07-10 Geoffrey Keating <geoffk@apple.com> * decl.c (cp_finish_decl): Handle 'used' attribute. * cp-lang.c (c_reset_state): New dummy routine. * cp-tree.h (finish_file): Move prototype to c-common.h. * parser.c (c_parse_file): Rename from yyparse; don't call finish_file. From-SVN: r69224
2003-07-11re PR c++/8327 (In definition of template static member value of static ↵Mark Mitchell4-7/+65
const member isn't known) PR c++/8327 * pt.c (tsubst_qualified_id): Implement suggested resolution for Core Issue 2. (type_dependent_expression_p): Likewise. PR c++/8327 * g++.dg/template/scope1.C: New test. From-SVN: r69223
2003-07-11typeck.c (build_binary_op): Do not warn about signed vs.Mark Mitchell4-1/+17
* typeck.c (build_binary_op): Do not warn about signed vs. unsigned comparisons in the bodies of templates. * g++.dg/warn/Wsign-compare-1.C: New test. From-SVN: r69222
2003-07-10re PR rtl-optimization/9745 ([powerpc] miscompiles libmcrypt (alias problem ↵James E Wilson2-9/+19
during loop)) PR optimization/9745 * loop.c (loop_iv_add_mult_emit_before): Call loop_regs_update before loop_insn_emit_before. (loop_iv_add_mult_sink, loop_iv_add_mult_hoist): Likewise. From-SVN: r69220
2003-07-11cppcharset.c: Fix comment.Zack Weinberg2-37/+48
* cppcharset.c: Fix comment. (iconv_close [!HAVE_ICONV]): #define to (void)0 to prevent warning. (EILSEQ): #define to EINVAL if not already defined. (convert_using_iconv): #if out when !HAVE_ICONV. (init_iconv_desc): Handle !HAVE_ICONV here... (cpp_init_iconv): ...not here. From-SVN: r69218
2003-07-11common.opt: More --help messages.Neil Booth4-244/+241
* common.opt: More --help messages. * opts.c (print_help): Use puts(). * toplev.c (f_options): Remove help text. (display_help): Don't dump f_options. From-SVN: r69217
2003-07-11mkfixinc.sh: Drop reference to unsupported alpha-*-interix*.Nathanael Nerode3-8/+7
* fixinc/mkfixinc.sh: Drop reference to unsupported alpha-*-interix*. Move i?86-*-interix* to the don't-fix list. * fixinc/fixinc.interix: Delete with extreme prejudice. From-SVN: r69216