summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* * lex.c (java_lex): Check for `e' or `E' after 0.tromey2002-07-232-2/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55664 138bc75d-0d04-0410-961f-82ee72b054a4
* * libjava.compile/zeroexp.java: New file.tromey2002-07-232-0/+14
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55663 138bc75d-0d04-0410-961f-82ee72b054a4
* * gnu/java/security/provider/MD5.java: Extends MessageDigest, notmark2002-07-222-4/+9
| | | | | | | MessageDigestSpi (fixes Classpath bug #783). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55661 138bc75d-0d04-0410-961f-82ee72b054a4
* * gnu/java/security/provider/Gnu.java: Reference all implementationmark2002-07-222-9/+22
| | | | | | | classes by using Class.getName(). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55660 138bc75d-0d04-0410-961f-82ee72b054a4
* PR target/6744ciceron2002-07-222-0/+7
| | | | | | | | * config/m68hc11/m68hc11.c (m68hc11_z_replacement): Also replace ASM_OPERANDS instructions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55659 138bc75d-0d04-0410-961f-82ee72b054a4
* PR target/7361ciceron2002-07-222-1/+7
| | | | | | | | * config/m68hc11/m68hc11.c (go_if_legitimate_address_internal): Accept constant addresses only on 68HC12. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55658 138bc75d-0d04-0410-961f-82ee72b054a4
* * cppfiles.c (stack_include_file): Correct test of whetherneil2002-07-222-1/+6
| | | | | | | a dependency should be output. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55657 138bc75d-0d04-0410-961f-82ee72b054a4
* * collect2.c (is_ctor_dtor): Add other possible JOINER values.dje2002-07-222-0/+13
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55656 138bc75d-0d04-0410-961f-82ee72b054a4
* * arm.md (movqi): If optimizing and we can create pseudos, userearnsha2002-07-222-3/+25
| | | | | | | | | a ZERO_EXTEND to load from memory, then copy the result into the target. (movhi): Likewise, but only for ARMv4. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55655 138bc75d-0d04-0410-961f-82ee72b054a4
* * ssa-ccp.c (PHI_PARMS): Remove.neil2002-07-222-1/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55654 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/mips/mips.h (CLASS_CANNOT_CHANGE_MODE): Include FP_REGSrsandifo2002-07-222-2/+11
| | | | | | | on big-endian targets. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55653 138bc75d-0d04-0410-961f-82ee72b054a4
* * hwint.h (HOST_WIDE_INT_PRINT_DEC_SPACE,ghazi2002-07-223-10/+34
| | | | | | | | | | | HOST_WIDE_INT_PRINT_UNSIGNED_SPACE, HOST_WIDEST_INT_PRINT_DEC_SPACE, HOST_WIDEST_INT_PRINT_DEC_SPACE): New formatting macros. * ra-debug.c (dump_static_insn_cost): Avoid string concatenation. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55652 138bc75d-0d04-0410-961f-82ee72b054a4
* * rtlanal.c (subreg_regno_offset): Return correct offset foramylaar2002-07-222-1/+14
| | | | | | | big endian paradoxical subregs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55650 138bc75d-0d04-0410-961f-82ee72b054a4
* PR c++/7347, c++/7348lerdsuwa2002-07-2213-32/+121
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * cp-tree.h (tsubst_flags_t): Add tf_parsing. * decl.c (make_typename_type): Use it. (make_unbound_class_template): Likewise. (lookup_name_real): Don't call type_access_control if scope is template parameter dependent. * parse.y (template_arg): Call make_unbound_class_template with tf_parsing set. (nest_name_specifier): Call make_typename_type with tf_parsing set. (typename_sub0): Likewise. (typename_sub1): Likewise. (instantiate_decl): Push class scope. * pt.c (regenerate_decl_from_template): Call pushclass and popclass for both static variable and member function template. (instantiate_decl) Call pushclass and popclass when tsubst'ing type and arguments. * search.c (type_access_control): Do type access for TEMPLATE_DECL too. * g++.dg/template/access4.C: New test. * g++.dg/template/access5.C: New test. * g++.old-deja/g++.pt/memtemp85.C: Fix access problem. * g++.old-deja/g++.pt/memtemp86.C: Likewise. * g++.old-deja/g++.pt/ttp58.C: Likewise. * g++.old-deja/g++.pt/memtemp89.C: Remove XFAIL. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55649 138bc75d-0d04-0410-961f-82ee72b054a4
* * optabs.c (expand_vector_unop): Don't expand using sub_optabamylaar2002-07-222-2/+8
| | | | | | | if we got the wrong mode. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55648 138bc75d-0d04-0410-961f-82ee72b054a4
* * hwint.c (define HOST_WIDE_INT_PRINT_DEC_C): New define.amylaar2002-07-224-3/+12
| | | | | | | | * genrecog.c (write_switch, write_cond): Use it. * genemit.c (gen_exp): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55647 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-decl.c (build_compound_literal): Set decl TREE_READONLY from TYPE.jakub2002-07-222-0/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55646 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-decl.c (build_compound_literal): Defer compound literal declsjakub2002-07-224-5/+45
| | | | | | | | | until until file end to emit them only if they are actually used. * gcc.dg/gnu89-init-2.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55645 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2002-07-227-7/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55643 138bc75d-0d04-0410-961f-82ee72b054a4
* * ra-build.c (check_conflict_numbers): Hide unused function.ghazi2002-07-224-45/+59
| | | | | | | | | | | | | | | | | | (livethrough_conflicts_bb): Avoid automatic aggregate initialization. (parts_to_webs_1): Avoid `U' integer constant modifier. (conflicts_between_webs): Wrap a variable in the macro controlling its usage. * ra-debug.c (ra_debug_msg): Use VA_OPEN/VA_CLOSE. (dump_igraph, dump_graph_cost): Avoid string concatenation (dump_static_insn_cost): Avoid automatic aggregate initialization. * ra-rewrite.c (insert_stores): Avoid automatic aggregate initialization. (dump_cost): Avoid string concatenation git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55637 138bc75d-0d04-0410-961f-82ee72b054a4
* * expr.c (expand_expr) [TRY_FINALLY_EXPR]: Don't userth2002-07-224-19/+72
| | | | | | | | | | GOTO_SUBROUTINE_EXPR when finally_block can be re-expanded. * lang.c (java_unsafe_for_reeval): New. (LANG_HOOKS_UNSAFE_FOR_REEVAL): New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55636 138bc75d-0d04-0410-961f-82ee72b054a4
* * unroll.c (find_splittable_givs): Do not split DEST_ADDR givsrth2002-07-222-99/+8
| | | | | | | that are not unrolled completely. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55635 138bc75d-0d04-0410-961f-82ee72b054a4
* * loop.h (LOOP_AUTO_UNROLL): Rename from LOOP_FIRST_PASS.rth2002-07-224-7/+16
| | | | | | | | | * loop.c (strength_reduce): Update. * toplev.c (rest_of_compilation): Do unrolling in the first loop pass, not the second. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55634 138bc75d-0d04-0410-961f-82ee72b054a4
* * emit-rtl.c (set_mem_attributes): Preserve indirection of PARM_DECLrth2002-07-224-1/+56
| | | | | | | | | when flag_argument_noalias == 2. * alias.c (nonoverlapping_memrefs_p): Handle that. * print-rtl.c (print_mem_expr): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55633 138bc75d-0d04-0410-961f-82ee72b054a4
* * libgcc2.c (__divdi3, __moddi3): Use unary minus operatorrth2002-07-222-10/+12
| | | | | | | instead of __negdi2 directly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55632 138bc75d-0d04-0410-961f-82ee72b054a4
* * gengenrtl.c (gencode): Don't define obstack_alloc_rtx.neil2002-07-218-45/+15
| | | | | | | | | | | | * function.c (SYMBOL__MAIN): Remove definition. * global.c (SET_CONFLICT, REGBITP, ALLOCNO_LIVE_P): Remove. * predict.c (PROB_NEVER, PROB_LIKELY, PROB_UNLIKELY): Remove. * profile.c (GCOV_INDEX_TO_BB): Remove. * sched-rgn.c (ABS_VALUE, MIN_DIFF_PRIORITY, MIN_PROB_DIFF): Remove. * simplify-rtx.c (FIXED_BASE_PLUS_P): Remove. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55631 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-lex.c (GET_ENVIRONMENT): Remove.neil2002-07-219-41/+36
| | | | | | | | | | | | | | | | | | * collect2.c (GET_ENV_PATH_LIST): Remove. (prefix_from_env): Use GET_ENVIRONMENT. * cppinit.c (GET_ENV_PATH_LIST): Remove. (init_standard_includes): Use GET_ENVIRONMENT. * defaults.h (GET_ENVIRONMENT): Define here if not already. * gcc.c (GET_ENV_PATH_LIST): Remove. (make_relative_prefix, process_command): Update. * protoize.c (GET_ENV_PATH_LIST): Remove. (do_processing): Update. java: * jcf-path.c (GET_ENV_PATH_LIST): Remove. (jcf_path_init): Use GET_ENVIRONMENT. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55630 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-07-21 Gabriel Dos Reis <gdr@nerim.net>gdr2002-07-219-20/+34
| | | | | | | | | | | | | | | | | | * c-decl.c (build_array_declarator): Say 'ISO C90', not 'ISO C89'. (grokdeclarator): Likewise. * c-format.c (C_STD_NAME): Likewise. * c-lex.c (interpret_integer): Likewise. * c-typeck.c (build_array_ref): Likewise. * cpplex.c (_cpp_lex_direct): Likewise. * toplev.c (documented_lang_options): Likewise. testsuite/ 2002-07-21 Gabriel Dos Reis <gdr@nerim.net> * gcc.dg/c90-arraydecl-1.c: Change C89 too C90. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55629 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-format.c (T99_I, T99_UI): Remove.neil2002-07-212-2/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55628 138bc75d-0d04-0410-961f-82ee72b054a4
* * c-typeck.c (SAVE_SPELLING_DEPTH): Remove.neil2002-07-212-9/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55627 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcse.c (do_local_cprop): Do not extend lifetimes of registers set byhubicka2002-07-212-1/+15
| | | | | | | do_local_cprop. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55626 138bc75d-0d04-0410-961f-82ee72b054a4
* * reload1.c (fixup_abnormal_edges): Remove unused variable.aj2002-07-212-1/+4
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55625 138bc75d-0d04-0410-961f-82ee72b054a4
* Enhancements for the if-conversion passbernds2002-07-214-182/+668
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55624 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2002-07-217-7/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55622 138bc75d-0d04-0410-961f-82ee72b054a4
* * decl2.c (cxx_decode_option): Simplify -fhandle-exceptionssayle2002-07-212-4/+8
| | | | | | | test by using positive_option. Make whitespace consistent. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55616 138bc75d-0d04-0410-961f-82ee72b054a4
* * gcse.c: Include cselib.hhubicka2002-07-202-46/+148
| | | | | | | | | | (constptop_register): Break out from ... (cprop_insn): ... here; kill basic_block argument. (do_local_cprop, local_cprop_pass): New functions. (one_cprop_pass): Call local_cprop_pass. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55615 138bc75d-0d04-0410-961f-82ee72b054a4
* * simplify-rtx.c (simplify_relational_operation): Optimizesayle2002-07-204-0/+67
| | | | | | | | | abs(x) < 0.0 (and abs(x) >= 0.0 when using -ffast-math). * gcc.c-torture/execute/20020720-1.c: New test case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55614 138bc75d-0d04-0410-961f-82ee72b054a4
* * MAINTAINERS: Add myself as ra* maintainer.matz2002-07-202-0/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55613 138bc75d-0d04-0410-961f-82ee72b054a4
* * ra-build.c: (remember_web_was_spilled): Use GENERAL_REGS.matz2002-07-202-1/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55612 138bc75d-0d04-0410-961f-82ee72b054a4
* * cppexp.c (struct op): Add token pointer.neil2002-07-206-28/+104
| | | | | | | | | | | | | | (check_promotion, CHECK_PROMOTION): New. (optab): Update. (_cpp_parse_expr): Update, use token pointer of struct op. (reduce): Warn about change of sign owing to promotion. * cppinit.c (cpp_handle_option): New warning if -Wall. * cpplib.h (struct cpp_options): New member. testsuite: * gcc.dg/cpp/Wsignprom.c: New tests. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55611 138bc75d-0d04-0410-961f-82ee72b054a4
* * spew.c (struct uinparsed_test): Replace 'filename' and 'lineno'gdr2002-07-202-33/+35
| | | | | | | | | | | members with 'locus'. Adjust use throughout. (struct feed): Likewise. (alloc_unparsed_test): Change prototype, take a 'const location_t *'. Adjust use. (snarf_defarg): Use error(), not error_with_file_and_line(). git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55610 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2002-07-207-7/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55608 138bc75d-0d04-0410-961f-82ee72b054a4
* 2002-07-20 Phil Edwards <pme@gcc.gnu.org>pme2002-07-2016-1468/+2686
| | | | | | | | | | | | | | | | | | | | * docs/html/abi.txt: New file. * docs/html/23_containers/howto.html: Tweak vector-overhead text. * docs/html/ext/lwg-active.html, docs/html/ext/lwg-defects.html: Import from upstream, R22. * include/bits/char_traits.h, include/bits/stl_iterator.h, include/bits/stl_iterator_base_types.h, libsupc++/exception, libsupc++/new, libsupc++/typeinfo: Use @brief markup. * include/bits/deque.tcc, include/bits/stl_alloc.h, include/bits/stl_deque.h, include/bits/stl_list.h: Postpone removal of deprecated functions until 3.4. (Same timeframe, different text.) * include/bits/stl_vector.h: Ditto. Also do the same cleanups that the other sequence classes received. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55602 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/rs6000/rs6000.md: Remove ppc630 fpcompare from singledje2002-07-203-18/+26
| | | | | | | | | | | fpu list. Separate Power4 compare and delayed_compare. Correct Power4 fpcompare. (fix_truncdfsi2_internal): Restore FPR preference. * config/rs6000/t-aix43 (MULTILIB_MATCHES): Add mcpu?power3, mcpu?power4, mcpu?604e. Remove mpower, mpower2, mpowerpc. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55601 138bc75d-0d04-0410-961f-82ee72b054a4
* * reload1.c (reload_as_needed): Duplicate oldpat.rth2002-07-202-1/+5
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55600 138bc75d-0d04-0410-961f-82ee72b054a4
* New test.amodra2002-07-202-0/+40
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55599 138bc75d-0d04-0410-961f-82ee72b054a4
* PR optimization/7130amodra2002-07-204-11/+32
| | | | | | | | | * loop.h (struct loop_info): Add "preconditioned". * unroll.c (unroll_loop): Set it. * doloop.c (doloop_modify_runtime): Correct count for unrolled loops. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55598 138bc75d-0d04-0410-961f-82ee72b054a4
* * rtl.def (CODE_LABEL): Remove slot 8.zack2002-07-1911-51/+158
| | | | | | | | | | | | | | | | | | | | | | | | | | * rtl.h (struct rtx_def): Document new uses of jump and call fields. (LABEL_ALTERNATE_NAME): Delete. (LABEL_KIND, SET_LABEL_KIND, LABEL_ALT_ENTRY_P): New. * defaults.h: Remove default for ASM_OUTPUT_ALTERNATE_LABEL_NAME. * final.c (output_alternate_entry_point): New. (final_scan_insn): Use it instead of ASM_OUTPUT_ALTERNATE_LABEL_NAME. Do not consider possibility of a case label being an alternate entry point. * cfgbuild.c (make_edges, find_bb_boundaries): Use LABEL_ALT_ENTRY_P. * emit-rtl.c (gen_label_rtx): Adjust call to gen_rtx_CODE_LABEL. Do not clear LABEL_NUSES (unnecessary) or LABEL_ALTERNATE_NAME (field deleted). * print-rtl.c, ra-debug.c: Update code to output CODE_LABELs. * doc/rtl.texi: Document LABEL_KIND, SET_LABEL_KIND, and LABEL_ALT_ENTRY_P; not LABEL_ALTERNATE_NAME. * doc/tm.texi: Delete documentation of ASM_OUTPUT_ALTERNATE_LABEL_NAME. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55597 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/mips/iris5gas.h (DWARF2_DEBUGGING_INFO): Define.ro2002-07-197-18/+91
| | | | | | | | | | | | | | | | | | | (PREFERRED_DEBUGGING_TYPE): Use DWARF2_DEBUG. (LINK_SPEC): Define. (STARTFILE_SPEC): Define. (ENDFILE_SPEC): Define. * config/mips/iris6-o32.h (LINK_SPEC): Move ... * config/mips/iris6-o32-as.h (LINK_SPEC): ... here. * config/mips/iris6-o32-gas.h: New file. * config.gcc (mips-sgi-irix6*o32): Use it. * config/mips/t-iris5-gas: New file. * config.gcc (mips-sgi-irix6*o32, mips-sgi-irix5*): Use it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55596 138bc75d-0d04-0410-961f-82ee72b054a4
* * cppexp.c (ALWAYS_EVAL): Remove.neil2002-07-194-108/+133
| | | | | | | | | | | (optab, reduce): Always evaluate. (num_unary_op, num_binary_op, num_div_op): Issue diagnostics only if not skipping evaluation. testsuite: * gcc.dg/cpp/expr.c: New tests. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@55595 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud