- 01 Feb, 2005 4 commits
-
-
From-SVN: r94511
Kazu Hirata committed -
From-SVN: r94509
GCC Administrator committed -
* cse.c (cse_reg_info): Remove hash_next, next, regno. Add timestamp. (cse_reg_info_list, cse_reg_info_list_free, REGHASH_SHIFT, REGHASH_SIZE, REGHASH_MASK, reg_hash, REGHASH_FN, cached_cse_reg_info, GET_CSE_REG_INFO): Remove. (cached_regno): Initialize to INVALID_REGNUM. (cse_reg_info_table_size, cse_reg_info_table_first_uninitialized, cse_reg_info_timestamp): New. (REG_TICK, REG_IN_TABLE, SUBREG_TICKED, REG_QTY): Use get_cse_reg_info. (init_cse_reg_info, get_cse_reg_info_1): New. (get_cse_reg_info): Cache the last look-up. (new_basic_block): Update the code to clear mappings from registers to cse_reg_info entries. (cse_main): Call init_cse_reg_info. From-SVN: r94506
Kazu Hirata committed -
gcc/ PR c/19333 * c-decl.c (start_decl): Do not warn about arrays of elements with an incomplete type here. (grokdeclarator): Do it here by making a pedwarn an error. * c-typeck.c (push_init_level): If there were previous errors with the constructor type, do not warn about braces for initializers. (process_init_element): Likewise for excess initializer elements. testsuite/ PR c/19333 * testsuite/gcc.c-torture/compile/20011130-1.c: Reorder to make the test case valid. * testsuite/gcc.dg/20030815-1.c: Remove invalid tests. * testsuite/gcc.dg/array-7.c: Adjust expected result. * testsuite/gcc.dg/pr18596-3.c: Likewise. * testsuite/gcc.dg/noncompile/20000901-1.c: Likewise. * testsuite/gcc.dg/noncompile/init-2.c: Likewise. * testsuite/gcc.dg/noncompile/init-4.c: Likewise. From-SVN: r94505
Steven Bosscher committed
-
- 31 Jan, 2005 23 commits
-
-
2005-01-31 Dale Johannesen <dalej@apple.com> * doc/extend.texi (nested functions): Fix linkage description. Clarify that static is not allowed. From-SVN: r94499
Dale Johannesen committed -
From-SVN: r94498
Kazu Hirata committed -
2005-01-31 Andrew Pinski <pinskia@physics.uc.edu> * config/rs6000/rs6000.md (copysignsf3): New expand. (copysigndf3): Likewise. From-SVN: r94497
Andrew Pinski committed -
* parser.c (cp_lexer_new_main): Get the first token, first, before doing anything. Radar 3929334 From-SVN: r94494
Mike Stump committed -
recog.c (constrain_operands): Only look for earlyclobber operand conflicts if an '&' constraint was seen. * recog.c (constrain_operands): Only look for earlyclobber operand conflicts if an '&' constraint was seen. From-SVN: r94493
Steven Bosscher committed -
Turns out OpenBSD was mistakenly including an embedded system fragment, and thus outputting stabs debug by default. Once the only needed definition is saved from that file, we happily compile with default dwarf2. The rest of the toolchain is happy, and any recent gdb works very well with that... This obviously improves the stability of the compiler, since dwarf2 output is so much more well-tested than stabs on elf platforms... 2005-01-31 Marc Espie <espie@openbsd.org> * config.gcc: Don't include embedded systems fragment, switches default debugging format to ELF. * config/i386/openbsdelf.h: Add DBX_REGISTER_NUMBER since we no longer pick it up there. From-SVN: r94488
Marc Espie committed -
2005-01-31 Dale Johannesen <dalej@apple.com> * config/rs6000/darwin.md (movsf_low_di): Make work. (movdf_low_di): Make work. From-SVN: r94487
Dale Johannesen committed -
2005-01-31 Dale Johannesen <dalej@apple.com> * config/rs6000/darwin-tramp.asm (__trampoline_setup): Make work for 64 bit. From-SVN: r94486
Dale Johannesen committed -
2005-01-31 Roger Sayle <roger@eyesopen.com> Dale Johannesen <dalej@apple.com> PR middle-end/19650 * fold-const.c (fold_binary_op_with_conditional_arg): Make types match original operands, before STRIP_NOPS. From-SVN: r94485
Dale Johannesen committed -
2005-01-31 Paolo Carlini <pcarlini@suse.de> Gabriel Dos Reis <gdr@integrable-solutions.net> * include/bits/cpp_type_traits.h: Add types to the structs thus making type_traits.h redundant; exploit new __truth_type and __traitor helpers. * include/bits/type_traits.h: Remove. * include/Makefile.am: Update. * include/Makefile.in: Regenerate. * include/backward/tempbuf.h: Include cpp_type_traits.h instead. * include/bits/basic_string.h (replace(iterator, iterator, _InputIterator, _InputIterator), _S_construct(_InIterator, _InIterator, const _Alloc&)): Use __is_integer instead. * include/bits/stl_bvector.h (vector(_InputIterator, _InputIterator, const allocator_type&), assign(_InputIterator, _InputIterator), insert(iterator, _InputIterator, _InputIterator)): Likewise. * include/bits/stl_construct.h (_Destroy(_ForwardIterator, _ForwardIterator)): Use __is_scalar. * include/bits/stl_deque.h (deque(_InputIterator, _InputIterator, const allocator_type&), assign(_InputIterator, _InputIterator), insert(iterator, _InputIterator, _InputIterator)): Use __is_integer. * include/bits/stl_list.h (assign(_InputIterator, _InputIterator), insert(iterator, _InputIterator, _InputIterator)): Likewise. * include/bits/stl_tempbuf.h (_Temporary_buffer(_ForwardIterator, _ForwardIterator)): Use __is_scalar. * include/bits/stl_uninitialized.h (uninitialized_copy(_InputIterator, _InputIterator, _ForwardIterator), uninitialized_fill(_ForwardIterator, _ForwardIterator, const _Tp&), uninitialized_fill_n(_ForwardIterator, _Size, const _Tp&)): Likewise. * include/bits/stl_vector.h (vector(_InputIterator, _InputIterator, const allocator_type&), assign(_InputIterator, _InputIterator), insert(iterator, _InputIterator, _InputIterator)): Use __is_integer. * include/debug/debug.h (__valid_range(const _InputIterator&, const _InputIterator&)): Use __is_integer. * include/ext/slist (assign(_InputIterator, _InputIterator)): Likewise. * include/std/std_string.h: Include cpp_type_traits.h instead. Co-Authored-By: Gabriel Dos Reis <gdr@integrable-solutions.net> From-SVN: r94484
Paolo Carlini committed -
From-SVN: r94483
Mark Mitchell committed -
* config/rs6000/linux-unwind.h (struct gcc_vregs): New. (struct gcc_regs): Rename from gcc_pt_regs. Add more regs. (struct gcc_sigcontext): Delete. Merge contents to.. (struct gcc_ucontext): ..here. (get_sigcontext): Delete. (get_regs): New function, like get_sigcontext but return regs ptr. 64-bit version finds regs from r1 to support vdso. (ppc_linux_aux_vector): New function. (ppc_fallback_frame_state): Modify for get_regs. Restore fprs and vector regs. From-SVN: r94481
Alan Modra committed -
2005-01-31 Ira Rosen <irar@il.ibm.com> * tree-vectorizer.c (vect_analyze_offset_expr): Use ssizetype instead sizetype. (vect_get_base_and_offset): Use ssizetype instead sizetype. Remove redundant fold. Fix misalignment for MINUS_EXPR. (vect_compute_data_ref_alignment): Use ssizetype instead sizetype. (vect_analyze_pointer_ref_access): Likewise. (vect_get_memtag_and_dr): Likewise. From-SVN: r94480
Ira Rosen committed -
* config/i386/i386.c (absnegsf2_mixed): Remove all of the # hackery. (absnegsf2_sse, absnegsf2_i387, absnegdf2_mixed, absnegdf2_sse, absnegdf2_i387, absnegxf2_i387): Likewise. From-SVN: r94473
Richard Henderson committed -
* gcc.c-torture/execute/ieee/copysign1.c: Special case sizeof long double for intel double extended format. * gcc.c-torture/execute/ieee/copysign2.c: Likewise. From-SVN: r94472
Richard Henderson committed -
PR 19696 * optabs.c (expand_copysign_absneg): New. (expand_copysign_bit): Split out from ... (expand_copysign): ... here. Use expand_copysign_absneg. From-SVN: r94471
Richard Henderson committed -
PR c++/19555 * cp-tree.h (DECL_USE_TEMPLATE): Expand documentation. * decl.c (duplicate_decls): Do not discard DECL_IMPLICIT_INSTANTIATION when merging declarations. (start_decl): Do not SET_DECL_TEMPLATE_SPECIALIZATION for variables that do not have DECL_USE_TEMPLATE. PR c++/19555 * g++.dg/template/static10.C: New test. From-SVN: r94469
Mark Mitchell committed -
PR middle-end/19697 * config/pa/pa.md (anddi3, iordi3): On HPPA64, disallow an integer constant as the second operand and a register as the third. From-SVN: r94468
Roger Sayle committed -
PR target/19704 * config/i386/i386.c (ix86_function_ok_for_sibcall): Also check that dllimport'd functions do not use all call-clobbered registers to pass parameters. From-SVN: r94467
Danny Smith committed -
PR c++/19395 * decl.c (grokdeclarator): Refactor code so that qualified names are never allowed as the declarator in a typedef. PR c++/19367 * name-lookup.c (do_nonmember_using_decl): Avoid overloading builtin declarations. PR c++/19395 * g++.dg/parse/error24.C: New test. PR c++/19367 * g++.dg/lookup/builtin1.C: New test. From-SVN: r94466
Mark Mitchell committed -
PR 19696 * optabs.c (expand_absneg_bit): Split out from expand_unop and expand_abs_nojump and generalize. Use operand_subword and emit_no_conflict_block. Support large modes. (expand_abs_nojump): Use it. Use HONOR_SIGNED_ZEROS to fall back to maximum. (expand_unop): Likewise. Use HONOR_SIGNED_ZEROS to fall back negation to subtraction. (expand_copysign): Check that the format has signed zeros. Use operand_subword and emit_no_conflict_block. Support large modes. From-SVN: r94465
Richard Henderson committed -
PR c++/19457 * call.c (convert_like_real): Inline call to dubious_conversion_warnings here. * cp-tree.h (dubious_conversion_warnings): Remove. * semantics.c (finish_unary_op_expr): Copy INTEGER_CSTs before setting TREE_NEGATED_INT. * typeck.c (dubious_conversion_warnings): Remove. PR c++/19349 * name-lookup.c (pushdecl_namespace_level): Avoid accessing free'd memory. PR c++/19457 * g++.dg/warn/conv3.C: New test. From-SVN: r94463
Mark Mitchell committed -
From-SVN: r94457
GCC Administrator committed
-
- 30 Jan, 2005 13 commits
-
-
From-SVN: r94449
Daniel Berlin committed -
2005-01-30 Daniel Berlin <dberlin@dberlin.org> Fix PR tree-optimization/19624 * Makefile.in (tree-ssa-pre.o): Add CFGLOOP_H. * tree-ssa-pre.c: Add cfgloop.h. Update comment. (pre_stats): New member, constified. (inserted_exprs): New static variable. (NECESSARY): New macro. (create_expression_by_pieces): Fold the expression, and mark it as defaulting to not necessary. Also put in inserted_exprs. (fully_constant_expression): New function. (insert_into_preds_of_block): Modify to not insert phis when we are playing with induction variables. Push phis onto the inserted_exprs vector, and mark them as not necessary by default. (insert_aux): Call fully_constant_expression on eprime. If all edges produce the same value, mark it constant. (mark_operand_necessary): New function. (remove_dead_inserted_code): New function. (init_pre): Init loop optimizer to get loop info. (fini_pre): Free loop_optimizer, and inserted_exprs vec. (execute_pre): Commit edge inserts, then remove dead code. From-SVN: r94448
Daniel Berlin committed -
From-SVN: r94447
Richard Henderson committed -
* rtl.c (rtx_equal_p): No early exit for CONST_VECTOR. * varasm.c (const_rtx_hash_1): Handle CONST_VECTOR. From-SVN: r94446
Richard Henderson committed -
From-SVN: r94443
Richard Henderson committed -
PR target/19700 * config/i386/i386.c (ix86_expand_copysign): New. (ix86_split_copysign_const): New. (ix86_split_copysign_var): Rename from ix86_split_copysign, rearrange op1/nmask operands. * config/i386/i386-protos.h: Update. * config/i386/i386.md (copysignsf3): Use ix86_expand_copysign. (copysigndf3): Likewise. (copysignsf3_const, copysigndf3_const): New. (copysignsf3_var): Rename from copysignsf3, split out splitter and fix split predicate for X constraint. (copysigndf3_var): Similarly. From-SVN: r94442
Richard Henderson committed -
* optabs.c, doc/c-tree.texi, doc/install.texi, doc/md.texi, doc/passes.texi, doc/rtl.texi, doc/sourcebuild.texi, doc/tm.texi, doc/tree-ssa.texi: Update copyright. From-SVN: r94441
Kazu Hirata committed -
2005-01-30 Paolo Carlini <pcarlini@suse.de> PR libstdc++/19642 * config/locale/generic/c_locale.h (__convert_from_v): Switch only LC_NUMERIC, and only when actually != "C". From-SVN: r94440
Paolo Carlini committed -
2005-01-30 Bud Davis <bdavis@gfortran.org> PR fortran/19647 * io/inquire.c (inquire_via_unit): Use correct variable for pad. * gfortan.dg/inquire_7.f90 From-SVN: r94439
Bud Davis committed -
PR target/19690 * config/i386/i386.md (movdf_nointeger, movdf_integer): Fix ordering of # and * in constraints. From-SVN: r94433
Richard Henderson committed -
PR middle-end/19689 * expr.c (store_field): Don't strip sub-mode cast when the input data is even smaller. From-SVN: r94429
Richard Henderson committed -
PR middle-end/19687 * expr.c (categorize_ctor_elements_1): Check for CONSTRUCTOR of a union being empty. From-SVN: r94421
Richard Henderson committed -
* combine.c (make_field_assignment): Fix argument order to gen_int_mode. From-SVN: r94420
Richard Henderson committed
-