1. 01 Feb, 2005 11 commits
    • tree-into-ssa.c (mark_def_sites_global_data): Make KILLS bitmap a sparse bitmap… · 7d793e36
      tree-into-ssa.c (mark_def_sites_global_data): Make KILLS bitmap a sparse bitmap instead of a simple bitmap.
      
              * tree-into-ssa.c (mark_def_sites_global_data): Make KILLS
              bitmap a sparse bitmap instead of a simple bitmap.
              (mark_def_sites_initialize_block):  Corresponding changes.
              (ssa_mark_def_sites_initialize_block): Likewise.
              (ssa_mark_phi_uses): Likewise.
              (mark_def_site, ssa_mark_def_sites): Likewise.
              (mark_def_site_blocks): Likewise.
              (rewrite_ssa_into_ssa): Likewise.
      
      From-SVN: r94519
      Jeff Law committed
    • tree-ssa-dom.c (record_cond): Pass correct variable type for last argument to… · 5746637c
      tree-ssa-dom.c (record_cond): Pass correct variable type for last argument to htab_find_slot_with_hash.
      
              * tree-ssa-dom.c (record_cond): Pass correct variable type
              for last argument to htab_find_slot_with_hash.
      
      From-SVN: r94517
      Jeff Law committed
    • fold-const.c (fold, [...]): Do not lose side effects when optimizing 0 % X. · dc5d4efb
      
      	* fold-const.c (fold, case CEIL_MOD_EXPR): Do not lose side
      	effects when optimizing 0 % X.  Do not try to optimize X % 0.
      
      	* gcc.c-torture/execute/20050131-1.c: New test.
      	* gcc.dg/wcaselabel.c: New test.
      
      From-SVN: r94516
      Jeff Law committed
    • Fix typo in Richard Henderson's IA-64 vector patch. · 3dcec1e9
      * config/ia64/itanium1.md (1_scall bypass): Change 2_mmalua to
      1_mmalua.
      
      From-SVN: r94515
      James E Wilson committed
    • mips.c (override_options): Warn if -mint64 is used. · fc474307
      2005-02-01  Eric Christopher  <echristo@redhat.com>
      
      	* config/mips/mips.c (override_options): Warn if -mint64
      	is used.
      	* doc/invoke.texi (MIPS Options): Document that -mint64 is
      	deprecated.
      
      From-SVN: r94514
      Eric Christopher committed
    • re PR java/9157 (SEGV on bad java source) · 7f75bb83
              PR java/9157
              * parse.y (build_string_concatenation): Remove redundant if.
              (patch_conditional_expr): Attempt to patch_string() the condition
              of a ?: as well, in addition to its other operands.
      
      From-SVN: r94513
      Ranjit Mathew committed
    • decl.c (build_enumerator): Do not issue duplicate error messages about invalid… · 93678513
      decl.c (build_enumerator): Do not issue duplicate error messages about invalid enumeration constants.
      
      	* decl.c (build_enumerator): Do not issue duplicate error messages
      	about invalid enumeration constants.
      	* parser.c (cp_parser_non_integral_constant_expression): Always
      	set parser->non_integral_constant_expression_p.
      	(cp_parser_primary_expression): Add cast_p parameter.  Issue
      	errors about invalid uses of floating-point literals in
      	cast-expressions.
      	(cp_parser_postfix_expression): Add cast_p parameter.
      	(cp_parser_open_square_expression): Pass it.
      	(cp_parser_parenthesized_expression_list): Add cast_p parameter.
      	(cp_parser_unary_expression): Likewise.
      	(cp_parser_new_placement): Pass it.
      	(cp_parser_direct_new_declarator): Likewise.
      	(cp_parser_new_initializer): Likewise.
      	(cp_parser_cast_expression): Add cast_p parameter.
      	(cp_parser_binary_expression): Likewise.
      	(cp_parser_question_colon_clause): Likewise.
      	(cp_parser_assignment_expression): Likewise.
      	(cp_parser_expression): Likewise.
      	(cp_parser_constant_expression): If an integral constant
      	expression is invalid, return error_mark_node.
      	(cp_parser_expression_statement): Pass cast_p.
      	(cp_parser_condition): Likewise.
      	(cp_parser_iteration_statement): Likewise.
      	(cp_parser_jump_statement): Likewise.
      	(cp_parser_mem_initializer): Likewise.
      	(cp_parser_template_argument): Likewise.
      	(cp_parser_parameter_declaration): Likewise.
      	(cp_parser_initializer): Likewise.
      	(cp_parser_throw_expression): Likewise.
      	(cp_parser_attribute_list): Likewise.
      	(cp_parser_simple_cast_expression): Likewise.
      	(cp_parser_functional_cast): Likewise.
      	(cp_parser_late_parsing_default_args): Likewise.
      	(cp_parser_sizeof_operand): Save/restore
      	non_integral_constant_expression_p.
      
      	* include/std/std_limits.h (numeric_limits<float>::has_denorm):
      	Add required cast.
      	(numeric_limits<double>::has_denorm): Likewise.
      	(numeric_limits<long double>::has_denorm): Likewise.
      
      	* g++.dg/other/warning1.C: Adjust error messags.
      	* g++.dg/parse/constant5.C: New test.
      
      From-SVN: r94512
      Mark Mitchell committed
    • * cse.c (get_cse_reg_info): Update a comment. · 782c0a3e
      From-SVN: r94511
      Kazu Hirata committed
    • Daily bump. · 74276db1
      From-SVN: r94509
      GCC Administrator committed
    • cse.c (cse_reg_info): Remove hash_next, next, regno. · bc5e3b54
      	* 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
    • re PR c/19333 (C front end accepts arrays of incomplete types) · b4519d39
      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
  2. 31 Jan, 2005 23 commits
  3. 30 Jan, 2005 6 commits