and though bugs are the bane of my existence, rest assured the wretched thing will get the best of care here

This project is mirrored from git://gcc.gnu.org/git/gcc.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
  1. 05 Nov, 2004 6 commits
  2. 04 Nov, 2004 2 commits
  3. 03 Nov, 2004 1 commit
  4. 02 Nov, 2004 1 commit
  5. 01 Nov, 2004 3 commits
  6. 31 Oct, 2004 4 commits
  7. 30 Oct, 2004 4 commits
  8. 29 Oct, 2004 3 commits
  9. 28 Oct, 2004 9 commits
  10. 27 Oct, 2004 5 commits
    • Joseph Myers's avatar
      * de.po: Update. · 33573518
      Joseph Myers authored
      From-SVN: r89688
      33573518
    • Andreas Krebbel's avatar
      s390.md ("*subdf3_cc"): Replaced plus by minus. · 9148e321
      Andreas Krebbel authored
      2004-10-27  Andreas Krebbel  <krebbel1@de.ibm.com>
      
      	* config/s390/s390.md ("*subdf3_cc"): Replaced plus by minus.
      
      From-SVN: r89672
      9148e321
    • Mark Mitchell's avatar
      re PR c++/18093 (bogus conflict in namespace aliasing) · 5a43fba9
      Mark Mitchell authored
      	PR c++/18093
      	* search.c (current_scope): Return the innermost non-block scope,
      	not the innermost non-block, non-namespace scope.
      	(at_namespace_scope_p): Adjust accordingly.
      	(dfs_accessible_post): Do not pass namespaces to is_friend.
      	(dfs_walk_once_accessible_r): Likewise.
      	* decl.c (grokvardecl): Adjust call to current_scope.
      	(build_enumerator): Likewise.
      	* parser.c (cp_parser_using_declaration): Likewise.
      	(cp_parser_direct_declarator): Use at_namespace_scope_p instead of
      	current_scope.
      	(cp_parser_class_head): Adjust call to current_scope.
      	* name-lookup.c (do_namespace_alias): Set the DECL_CONTEXT for the
      	alias.
      
      	PR c++/18020
      	* pt.c (tusbst_copy_and_build): Resolve enumeration constants to
      	their underlying values.
      
      	PR c++/18093
      	* g++.dg/lookup/ns2.C: New test.
      
      	PR c++/18020
      	* g++.dg/template/enum4.C: New test.
      
      From-SVN: r89631
      5a43fba9
    • No Author's avatar
      This commit was manufactured by cvs2svn to create branch · e13aaa38
      No Author authored
      'gcc-3_4-branch'.
      
      From-SVN: r89630
      e13aaa38
    • GCC Administrator's avatar
      Daily bump. · a2f56080
      GCC Administrator authored
      From-SVN: r89615
      a2f56080
  11. 26 Oct, 2004 2 commits
    • Richard Sandiford's avatar
      re PR bootstrap/15747 (/bin/sh hangs during bootstrap) · 611a761d
      Richard Sandiford authored
      	PR bootstrap/15747
      	* doc/install.texi (mips-sgi-irix5): Document that /bin/sh has been
      	reported to hang during bootstrap and that CONFIG_SHELL=/bin/ksh
      	can be used to work around this.
      
      From-SVN: r89600
      611a761d
    • Roger Sayle's avatar
      cse.c: Change encoding of quantity numbers to avoid undefined pointer arithmetic on... · ef172432
      Roger Sayle authored
      
      	* cse.c: Change encoding of quantity numbers to avoid undefined
      	pointer arithmetic on qty_table.
      	(REGNO_QTY_VALID_P): A quantity is now valid if it isn't negative.
      	(get_cse_reg_info): Initialize reg_qty to a unique negative value.
      	(new_basic_block): Assign "real" quantity numbers from zero.
      	(delete_reg_equiv): Do nothing if quantity is invalid.  Reset the
      	REG_QTY to its unique negative value.
      	(merge_equiv_classes): Calculate need_rehash if quantity is valid.
      	(cse_main): Don't include max_reg when determining max_qty.
      	(cse_basic_block): Avoid subtracting a large offset from qty_table,
      	which causes undefined C99 behaviour.  Only allocate needed memory.
      Co-Authored-By: default avatarJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>
      
      From-SVN: r89597
      ef172432