This is the mail archive of the gcc-cvs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

r125344 - in /branches/fixed-point: ./ ChangeLo...


Author: chaoyingfu
Date: Tue Jun  5 21:05:27 2007
New Revision: 125344

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=125344
Log:
Merged revisions 125075-125208 via svnmerge from 
svn+ssh://chaoyingfu@sources.redhat.com/svn/gcc/trunk

........
  r125075 | uros | 2007-05-25 14:58:21 -0700 (Fri, 25 May 2007) | 4 lines
  
          * config/i386/sse.md (*vec_extractv2di_1_sse2): Do not calculate
          "memory" attribute for "sseishft" type insn without operands[2].
........
  r125077 | uros | 2007-05-25 15:36:10 -0700 (Fri, 25 May 2007) | 11 lines
  
          * target/i386/i386.c (ix86_expand_vector_move): Force SUBREGs of
          constants into memory.  Expand unaligned memory references for
          SSE modes via x86_expand_vector_move_misalign() function.
  
  testsuite/ChangeLog:
  
          * gcc.target/i386/pr32065.c: New test.
........
  r125079 | kazu | 2007-05-25 15:44:06 -0700 (Fri, 25 May 2007) | 2 lines
  
  	* intrinsic.texi: Fix typos.
........
  r125080 | kazu | 2007-05-25 15:58:16 -0700 (Fri, 25 May 2007) | 7 lines
  
  	* cfglayout.c, cgraphunit.c, config/avr/avr.c, fold-const.c,
  	haifa-sched.c, optabs.h, tree-affine.c, tree-data-ref.c,
  	tree-predcom.c, tree-ssa-alias-warnings.c,
  	tree-ssa-forwprop.c, tree-vect-analyze.c, tree-vrp.c: Fix
  	comment typos.  Follow spelling conventions.
  	* doc/cpp.texi, doc/invoke.texi: Fix typos.
........
  r125083 | gccadmin | 2007-05-25 17:18:19 -0700 (Fri, 25 May 2007) | 1 line
  
  Daily bump.
........
  r125085 | echristo | 2007-05-25 18:58:51 -0700 (Fri, 25 May 2007) | 9 lines
  
  2007-05-25  Eric Christopher  <echristo@apple.com>
  
  	    * config.gcc: Add i386/t-fprules-softfp64 and soft-fp/t-softfp
  	    to x86-darwin configurations.
  	    * config/i386/t-darwin: Add softfp support.
  	    * config/i386/t-darwin64: Ditto.
  	    * config/i386/sfp-machine.h: If mach then don't use
  	    aliasing, emit a stub to call.
........
  r125086 | sandra | 2007-05-25 19:02:37 -0700 (Fri, 25 May 2007) | 27 lines
  
  2007-05-25  Sandra Loosemore  <sandra@codesourcery.com>
  	    Nigel Stephens  <nigel@mips.com>
  
  	gcc/
  	* config/mips/mips.c (mips_attribute_table): Add "near" and "far"
  	function attributes, "far" being an alias for "long_call".
  	(TARGET_COMP_TYPE_ATTRIBUTES): Define as mips_comp_type_attributes.
  	(mips_near_type_p, mips_far_type_p): New.
  	(mips_comp_type_attributes): New function to check that attributes
  	attached to a function type are compatible.
  	(mips_output_mi_thunk): Test SYMBOL_REF_LONG_CALL_P() rather than
  	TARGET_LONG_CALLS when deciding	whether we can do a direct sibcall
  	to the target function of the thunk.
  	(mips_encode_section_info): Check for "near" and "far" function
  	attributes, and always set the SYMBOL_FLAG_LONG_CALL bit explicitly.
  
  	* config/mips/predicates.md (const_call_insn_operand): Test only
  	SYMBOL_REF_LONG_CALL_P() and not TARGET_LONG_CALLS.
  
  	* doc/extend.texi (Function Attributes): Document MIPS "near" and
  	"far" attributes.
  
  	* testsuite/gcc.target/mips/near-far-1.c:  New test case.
  	* testsuite/gcc.target/mips/near-far-2.c:  New test case.
  	* testsuite/gcc.target/mips/near-far-3.c:  New test case.
  	* testsuite/gcc.target/mips/near-far-4.c:  New test case.
........
  r125087 | pinskia | 2007-05-25 20:29:58 -0700 (Fri, 25 May 2007) | 16 lines
  
  2007-05-25  Andrew Pinski  <andrew_pinski@playstation.sony.com>
  
          * tree-ssa-forwprop.c
          (forward_propagate_addr_into_variable_array_index): Remove
          the lhs argument.  Use the type of def_rhs instead of lhs.
          (forward_propagate_addr_expr_1): Update use of
          forward_propagate_addr_into_variable_array_index.
  
  2007-05-25  Andrew Pinski  <andrew_pinski@playstation.sony.com>
  
          * g++.dg/opt/array2.C: New testcase.
........
  r125088 | pault | 2007-05-26 04:25:36 -0700 (Sat, 26 May 2007) | 21 lines
  
  2007-05-26 Paul Thomas <pault@gcc.gnu.org>
  
  	* trans.h : Add no_function_call bitfield to gfc_se structure.
  	Add stmtblock_t argument to prototype of get_array_ctor_strlen.
  	* trans-array.c (get_array_ctor_all_strlen): New function.
  	(get_array_ctor_strlen): Add new stmtblock_t argument and call
  	new function for character elements that are not constants,
  	arrays or variables.
  	(gfc_conv_array_parameter): Call get_array_ctor_strlen to get
  	good string length.
  	* trans-intrinsic (gfc_conv_intrinsic_len): Add new argument
  	to call of get_array_ctor_strlen.
  
  
  2007-05-26 Paul Thomas <pault@gcc.gnu.org>
  
  	* gfortran.dg/array_constructor_17.f90: New test.
........
  r125089 | kazu | 2007-05-26 05:17:52 -0700 (Sat, 26 May 2007) | 6 lines
  
  	* c-typeck.c, config/arm/arm.c, config/darwin.c,
  	config/sh/symbian.c, gcc.c, ipa-cp.c, ipa-inline.c, loop-iv.c,
  	omega.c, tree-ssa-loop-niter.c, treestruct.def: Fix typos and
  	follow spelling conventions in various
  	warning/error/diagnostic messages.
........
  r125090 | kazu | 2007-05-26 06:00:47 -0700 (Sat, 26 May 2007) | 7 lines
  
  	* config/i386/i386.c, config/pa/pa.c, config/spu/spu.c,
  	df-problems.c, df-scan.c, domwalk.c, ebitmap.c, ebitmap.h,
  	fold-const.c, gcc.c, ipa-type-escape.c, omega.c, omega.h,
  	tree-ssa-coalesce.c, tree-ssa-live.c, tree-ssa-structalias.c,
  	tree-vrp.c: Fix comment typos.  Follow spelling conventions.
  	* doc/tm.texi: Follow spelling conventions.
........
  r125091 | burnus | 2007-05-26 06:29:29 -0700 (Sat, 26 May 2007) | 6 lines
  
  2007-05-26  Tobias Burnus  <burnus@net-b.de>
  
         * gfortran.texi: Document the GFORTRAN_ERROR_DUMPCORE and
         GFORTRAN_ERROR_BACKTRACE environment variables.
........
  r125093 | hjl | 2007-05-26 07:34:21 -0700 (Sat, 26 May 2007) | 20 lines
  
  2007-05-26  H.J. Lu  <hongjiu.lu@intel.com>
  
  	* config/i386/i386-protos.h (ix86_expand_sse4_unpack): New.
  
  	* config/i386/i386.c (ix86_expand_sse4_unpack): New.
  
  	* config/i386/sse.md (vec_unpacku_hi_v16qi): Call
  	ix86_expand_sse4_unpack if SSE4.1 is enabled.
  	(vec_unpacks_hi_v16qi): Likewise.
  	(vec_unpacku_lo_v16qi): Likewise.
  	(vec_unpacks_lo_v16qi): Likewise.
  	(vec_unpacku_hi_v8hi): Likewise.
  	(vec_unpacks_hi_v8hi): Likewise.
  	(vec_unpacku_lo_v8hi): Likewise.
  	(vec_unpacks_lo_v8hi): Likewise.
  	(vec_unpacku_hi_v4si): Likewise.
  	(vec_unpacks_hi_v4si): Likewise.
  	(vec_unpacku_lo_v4si): Likewise.
  	(vec_unpacks_lo_v4si): Likewise.
........
  r125094 | kazu | 2007-05-26 08:16:45 -0700 (Sat, 26 May 2007) | 3 lines
  
  	* basic-block.h: Remove the prototype for merge_seq_blocks.
  	* cfgcleanup.c (merge_seq_blocks): Remove.
........
  r125095 | kazu | 2007-05-26 08:17:38 -0700 (Sat, 26 May 2007) | 3 lines
  
  	* tree-flow.h: Remove the prototype for is_aliased_with.
  	* tree-ssa-alias.c (is_aliased_with): Remove.
........
  r125097 | jvdelisle | 2007-05-26 12:31:57 -0700 (Sat, 26 May 2007) | 5 lines
  
  2007-05-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
  
  	* io.c (check_format): Add warning for H specifier in format.
........
  r125098 | jvdelisle | 2007-05-26 12:36:14 -0700 (Sat, 26 May 2007) | 5 lines
  
  2007-05-26  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
  
  	* gfortran.dg/io_constraints_2.f90: Update.
........
  r125099 | jb | 2007-05-26 13:50:21 -0700 (Sat, 26 May 2007) | 21 lines
  
  2007-05-26  Janne Blomqvist  <jb@gcc.gnu.org>
  
  	* io/unix.c (unix_stream): Rearrange struct members, remove
  	small_buffer.
  	(int_stream): New struct.
  	(fd_alloc): Always use existing buffer, never reallocate.
  	(fd_sfree): Remove check for buffer != small_buffer.
  	(fd_close): Likewise.
  	(mem_alloc_r_at): Change to use int_stream.
  	(mem_alloc_w_at): Likewise.
  	(mem_read): Likewise.
  	(mem_write): Likewise.
  	(mem_set): Likewise.
  	(mem_truncate): Likewise.
  	(mem_close): Likewise.
  	(mem_sfree): Likewise.
  	(empty_internal_buffer): Likewise.
  	(open_internal): Likewise.
  	
........
  r125100 | jb | 2007-05-26 14:15:22 -0700 (Sat, 26 May 2007) | 17 lines
  
  2007-05-27  Janne Blomqvist  <jb@gcc.gnu.org>
  
  	* runtime/string.c (compare0): Use gfc_charlen_type instead of int.
  	(fstrlen): Likewise.
  	(find_option): Likewise.
  	(fstrcpy): Use gfc_charlen_type instead of int, return length.
  	(cf_strcpy): Likewise.
  	* libgfortran.h: Change string prototypes to use gfc_charlen_type.
  	* io/open.c (new_unit): Use snprintf if available.
  	* io/list_read.c (nml_touch_nodes): Use memcpy instead of strcpy/strcat.
  	(nml_read_obj): Likewise.
  	* io/transfer.c (st_set_nml_var): Likewise.
  	* io/write.c (output_float): Use snprintf if available.
  	(nml_write_obj) Use memcpy instead of strcpy/strcat.
  	
........
  r125102 | uros | 2007-05-26 14:35:41 -0700 (Sat, 26 May 2007) | 12 lines
  
          * config/i386/i386.md (movti): Handle push operands via
          ix86_expand_push().
  
  testsuite/ChangeLog:
  
          * gcc.target/i386/pr32065-1.c: Rename from pr32065.c.  Add -std=gnu99
          to compile options.
          * gcc.target/i386/pr32065-2.c: New test.
........
  r125105 | gccadmin | 2007-05-26 17:17:04 -0700 (Sat, 26 May 2007) | 1 line
  
  Daily bump.
........
  r125107 | hjl | 2007-05-27 00:21:58 -0700 (Sun, 27 May 2007) | 7 lines
  
  2007-05-27  H.J. Lu  <hongjiu.lu@intel.com>
  
  	* tree-vect-transform.c (vectorizable_conversion): Initialize
  	tree_code variables to ERROR_MARK.
  	(vectorizable_type_demotion): Likewise.
  	(vectorizable_type_promotion): Likewise.
........
  r125108 | burnus | 2007-05-27 01:09:51 -0700 (Sun, 27 May 2007) | 11 lines
  
  2007-05-26  Tobias Burnus  <burnus@net-b.de>
  
  	* real.c (mpfr_from_real): Fix sign of -Inf.
  
  2007-05-26  Tobias Burnus  <burnus@net-b.de>
  
  	* gfortran.dg/transfer_simplify_3.f90: New.
........
  r125110 | burnus | 2007-05-27 06:57:03 -0700 (Sun, 27 May 2007) | 7 lines
  
  (svn add was forgotten)
  2007-05-27  Tobias Burnus  <burnus@net-b.de>
  
          * gfortran.dg/transfer_simplify_3.f90: New.
........
  r125112 | paolo | 2007-05-27 07:50:21 -0700 (Sun, 27 May 2007) | 12 lines
  
  2007-05-27  Paolo Carlini  <pcarlini@suse.de>
  
  	* include/tr1/boost_shared_ptr.h
  	(_Sp_counted_base<_S_mutex>::_M_add_ref_lock()): Do not wrap in
  	#ifdef __GTHREADS.
  
  2007-05-27  Paolo Carlini  <pcarlini@suse.de>
  
  	* include/c_global/cwchar: Do not include <ctime>.
  	* include/c_std/cwchar: Likewise.
  	* include/ext/throw_allocator.h: Do it here.
........
  r125114 | rakdver | 2007-05-27 10:23:11 -0700 (Sun, 27 May 2007) | 35 lines
  
  	* tree-vrp.c (execute_vrp): Do not check whether current_loops == NULL.
  	* tree-chrec.c (evolution_function_is_invariant_rec_p): Ditto.
  	* ifcvt.c (if_convert): Ditto.
  	* tree-ssa-threadupdate.c (thread_block): Ditto.
  	(thread_through_all_blocks): Ditto.  Assert that loops were analysed.
  	* tree-ssa-loop-manip.c (rewrite_into_loop_closed_ssa,
  	verify_loop_closed_ssa): Check number_of_loops instead of current_loops.
  	* predict.c (tree_estimate_probability): Ditto.
  	* tree-if-conv.c (main_tree_if_conversion): Ditto.
  	* tree-ssa-loop-ch.c (copy_loop_headers): Ditto.
  	* modulo-sched.c (sms_schedule): Ditto.
  	* tree-scalar-evolution.c (scev_const_prop): Ditto.
  	(scev_finalize): Do not do anything if scev analysis was not
  	initialized.
  	* cfgloopanal.c (mark_irreducible_loops): Do not check whether
  	current_loops == NULL.
  	(mark_loop_exit_edges): Check number_of_loops instead of current_loops.
  	* loop-init.c (loop_optimizer_init): Do not free current_loops when
  	there are no loops.
  	(loop_optimizer_finalize): Assert that loops were analyzed.
  	(rtl_move_loop_invariants, rtl_unswitch, rtl_unroll_and_peel_loops,
  	rtl_doloop): Check number_of_loops instead of current_loops.
  	* tree-ssa-loop.c (tree_loop_optimizer_init): Do not check whether
  	current_loops == NULL.
  	(tree_ssa_loop_init, tree_ssa_loop_im, tree_ssa_loop_unswitch,
  	gate_tree_vectorize tree_linear_transform, check_data_deps,
  	tree_ssa_loop_ivcanon, tree_ssa_empty_loop, tree_ssa_loop_bounds,
  	tree_complete_unroll, tree_ssa_loop_prefetch, tree_ssa_loop_ivopts):
  	Check number_of_loops instead of current_loops.
  	(tree_ssa_loop_done): Do not check whether current_loops == NULL.
  	* tree-ssa-pre.c (fini_pre): Do not take do_fre argument.  Always
  	free loops if available.
  	(execute_pre): Do not pass do_fre to fini_pre.
........
  r125116 | echristo | 2007-05-27 12:13:07 -0700 (Sun, 27 May 2007) | 9 lines
  
  2007-05-27  Eric Christopher  <echristo@apple.com>
  
  	    * config/rs6000/rs6000.c (rs6000_emit_prologue): Update
  	    sp_offset depending on stack size. Save r12 depending
  	    on registers we're saving later.
  	    (rs6000_emit_epilogue): Update sp_offset depending only
  	    on stack size.
........
  r125118 | burnus | 2007-05-27 14:24:48 -0700 (Sun, 27 May 2007) | 24 lines
  
  fortran/
  2007-05-27 Paul Thomas  <pault@gcc.gnu.org>
  	   Tobias Burnus  <burnus@net-b.de>
  
  	* symbol.c (gfc_check_function_type): Copy dimensions of
  	  result variable.
  	* resolve.c (resolve_contained_fntype): Improve symbol output in
   	  the error message.
  
  testsuite/
  2007-05-27  Tobias Burnus  <burnus@net-b.de>
  
  	* gfortran.dg/func_result_3.f90: New.
  
  -- Diese und die falgenden Zeilen werden ignoriert --
  
  M    gcc/testsuite/ChangeLog
  A    gcc/testsuite/gfortran.dg/func_result_3.f90
  M    gcc/fortran/symbol.c
  M    gcc/fortran/ChangeLog
  M    gcc/fortran/resolve.c
........
  r125119 | jvdelisle | 2007-05-27 15:42:54 -0700 (Sun, 27 May 2007) | 6 lines
  
  2007-05-27  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
  
  	* parse.c (next_statement): Warn for truncated lines if source is free
  	form.
........
  r125122 | gccadmin | 2007-05-27 17:17:05 -0700 (Sun, 27 May 2007) | 1 line
  
  Daily bump.
........
  r125124 | bonzini | 2007-05-27 23:34:21 -0700 (Sun, 27 May 2007) | 4 lines
  
  2007-05-27  Paolo Bonzini  <bonzini@gnu.org>
  
  	* confsubdir.m4: Move here from newlib.
........
  r125125 | bonzini | 2007-05-27 23:38:00 -0700 (Sun, 27 May 2007) | 6 lines
  
  2007-05-27  Paolo Bonzini  <bonzini@gnu.org>
  
  	* configure.ac: Include confsubdir.m4.
  	* configure: Regenerate.
........
  r125126 | razya | 2007-05-28 04:10:27 -0700 (Mon, 28 May 2007) | 14 lines
  
  2007-05-07  Razya Ladelsky  <razya@il.ibm.com>  
          
          * matrix-reorg.c: New file. Implement matrix flattening and transposing
  	    optimization.
          * tree-pass.h: Add matrix reorg pass.
          * common.opt: Add fipa-mreorg flag.
          * Makefile.in: Add matrix-reorg.c.
          * passes.c: Add matrix reorg pass.
  	  * varpool.c (add_new_static_var): New function.
  	  * cgraph.h (add_new_static_var): Declare.
........
  r125127 | razya | 2007-05-28 04:23:08 -0700 (Mon, 28 May 2007) | 2 lines
  
  Change date of changelog
........
  r125128 | razya | 2007-05-28 04:27:34 -0700 (Mon, 28 May 2007) | 5 lines
  
  2007-05-28  Razya Ladelsky  <razya@il.ibm.com>
  
          * gcc.dg/matrix: New directory.
........
  r125129 | uros | 2007-05-28 05:17:42 -0700 (Mon, 28 May 2007) | 5 lines
  
  	* target/i386/i386.c (ix86_expand_vector_move): Expand unaligned
  	memory access via x86_expand_vector_move_misalign() only for
  	TImode values on 32-bit targets.
........
  r125131 | gerald | 2007-05-28 08:42:25 -0700 (Mon, 28 May 2007) | 3 lines
  
  	* doc/install.texi (Prerequisites): We no longer require Autoconf
  	2.13 for the top-level.
........
  r125132 | robc | 2007-05-28 09:18:31 -0700 (Mon, 28 May 2007) | 2 lines
  
  Removed myself from MAINTAINERS.
........
  r125133 | burnus | 2007-05-28 09:39:35 -0700 (Mon, 28 May 2007) | 7 lines
  
  2007-05-28  Tobias Burnus  <burnus@net-b.de>
  
  	* runtime/memory.c (allocate_size): Use ERROR_ALLOCATION.
  	(allocate,allocate64): Use stat variable if present. 
........
  r125134 | bkoz | 2007-05-28 10:02:30 -0700 (Mon, 28 May 2007) | 11 lines
  
  2007-05-28  Benjamin Kosnik  <bkoz@redhat.com>
  
  	* acinclude.m4 (GLIBCXX_ENABLE_CLOCALE): Re-organize. Sanity check
  	gnu locale model requests to make sure it will work for the requested
  	target. Add checks for strxfrm_l, strerror_l when in gnu locale,
  	and strerror_r everywhere.
  	* aclocal.m4: Regenerated.
  	* configure: Regenerated.
  	* config.h.in: Regenerated.
........
  r125135 | brooks | 2007-05-28 11:20:29 -0700 (Mon, 28 May 2007) | 51 lines
  
  * gfortran.h (gfc_expr): Remove from_H, add "representation"
  struct.
  * primary.c (match_hollerith_constant): Store the representation
  of the Hollerith in representation, not in value.character.
  * arith.c: Add dependency on target-memory.h.
  (eval_intrinsic): Remove check for from_H.
  (hollerith2representation): New function.
  (gfc_hollerith2int): Determine value of the new constant.
  (gfc_hollerith2real): Likewise.
  (gfc_hollerith2complex): Likewise.
  (gfc_hollerith2logical): Likewise.
  (gfc_hollerith2character): Point both representation.string and
  value.character.string at the value string.
  * data.c (create_character_initializer): For BT_HOLLERITH
  rvalues, get the value from the representation rather than
  value.character.
  * expr.c (free_expr0): Update handling of BT_HOLLERITH values
  and values with representation.string.
  (gfc_copy_expr): Likewise.
  * intrinsic.c (do_simplify): Remove special treatement of
  variables resulting from Hollerith constants.
  * dump-parse-trees.c (gfc_show_expr): Update handling of
  Holleriths.
  * trans-const.c (gfc_conv_constant_to_tree): Replace from_H
  check with check for representation.string; get Hollerith
  representation from representation.string, not value.character.
  * trans-expr.c (is_zero_initializer_p): Replace from_H check
  with check for representation.string.
  * trans-stmt.c (gfc_trans_integer_select): Use
  gfc_conv_mpz_to_tree for case values, so as to avoid picking up
  the memory representation if the case is given by a transfer
  expression.
  * target-memory.c (gfc_target_encode_expr): Use the known memory
  representation rather than the value, if it exists.
  (gfc_target_interpret_expr): Store the memory representation of
  the interpreted expression as well as its value.
  (interpret_integer): Move to gfc_interpret_integer, make
  non-static.
  (interpret_float): Move to gfc_interpret_float, make non-static.
  (interpret_complex): Move to gfc_interpret_complex, make
  non-static.
  (interpret_logical): Move to gfc_interpret_logical, make
  non-static.
  (interpret_character): Move to gfc_interpret_character, make
  non-static.
  (interpret_derived): Move to gfc_interpret_derived, make
  non-static.
  * target-memory.h: Add prototypes for newly-exported
  gfc_interpret_* functions.
........
  r125136 | brooks | 2007-05-28 11:30:50 -0700 (Mon, 28 May 2007) | 2 lines
  
  * gfortran.dg/transfer_simplify_4.f90: New test.
........
  r125137 | brooks | 2007-05-28 11:33:11 -0700 (Mon, 28 May 2007) | 2 lines
  
  Corrected changelog; I forgot to update the test filename.
........
  r125138 | brooks | 2007-05-28 11:34:02 -0700 (Mon, 28 May 2007) | 2 lines
  
  Corrected date in my last ChangeLog entry.
........
  r125139 | pinskia | 2007-05-28 12:43:10 -0700 (Mon, 28 May 2007) | 15 lines
  
  2007-05-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>
  
          * fold-const.c (tree_expr_nonnegative_warnv_p): Don't
          return true when truth_value_p is true and the type
          is of signed:1.
  
  2007-05-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>
  
           * gcc.c-torture/execute/vrp-7.c: New test.
........
  r125141 | brooks | 2007-05-28 13:53:09 -0700 (Mon, 28 May 2007) | 6 lines
  
  * target-memory.c (gfc_target_expr_size): Add handling
  for size of BT_HOLLERITH variables.
  * check.c (gfc_check_transfer): Reject BT_HOLLERITH
  variables in MOLD argument of TRANSFER.
........
  r125142 | brooks | 2007-05-28 13:54:49 -0700 (Mon, 28 May 2007) | 3 lines
  
  * transfer_hollerith_1.f90: New test.
........
  r125143 | brooks | 2007-05-28 13:55:41 -0700 (Mon, 28 May 2007) | 2 lines
  
  Corrected ChangeLog entry.
........
  r125144 | kazu | 2007-05-28 14:27:29 -0700 (Mon, 28 May 2007) | 4 lines
  
  	* targhooks.c (default_narrow_bitfield): Remove.
  	* targhooks.h: Remove the prototype for
  	default_narrow_bitfield.
........
  r125145 | kazu | 2007-05-28 14:28:31 -0700 (Mon, 28 May 2007) | 4 lines
  
  	* langhooks-def.h: Remove the prototype for
  	hook_get_alias_set_0.
  	* langhooks.c (hook_get_alias_set_0): Remove.
........
  r125146 | kazu | 2007-05-28 14:29:29 -0700 (Mon, 28 May 2007) | 2 lines
  
  	* global.c (EXECUTE_IF_CONFLICT): Remove.
........
  r125147 | dberlin | 2007-05-28 14:56:51 -0700 (Mon, 28 May 2007) | 6 lines
  
  2007-05-28  Daniel Berlin  <dberlin@dberlin.org>
  
  	* tree-ssa-dce.c (eliminate_unnecessary_stmts): Release LHS SSA
  	name when we remove it from a call.
........
  r125148 | burnus | 2007-05-28 15:07:23 -0700 (Mon, 28 May 2007) | 6 lines
  
  2007-05-28  Tobias Burnus  <burnus@net-b.de>
  
         * gfortran.dg/allocate_stat_1.f90: New.
........
  r125149 | mmitchel | 2007-05-28 15:11:18 -0700 (Mon, 28 May 2007) | 2 lines
  
  	* gcc_release: Adjust placement of release candidates.
........
  r125154 | gccadmin | 2007-05-28 17:17:56 -0700 (Mon, 28 May 2007) | 1 line
  
  Daily bump.
........
  r125156 | pinskia | 2007-05-28 17:25:25 -0700 (Mon, 28 May 2007) | 28 lines
  
  2007-05-28  Andrew Pinski  <Andrew_pinski@playstation.sony.com>
  
          * c-typeck.c (build_unary_op <case PREINCREMENT_EXPR,
          case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR,
          case POSTDECREMENT_EXPR>): Return the error_mark_node
          if either the real or imaginary parts would an
          error_mark_node.
  
  2007-05-28  Andrew Pinski  <Andrew_pinski@playstation.sony.com>
  
          * typeck.c (build_unary_op <case PREINCREMENT_EXPR,
          case POSTINCREMENT_EXPR, case PREDECREMENT_EXPR,
          case POSTDECREMENT_EXPR>): Return the error_mark_node
          if either the real or imaginary parts would an
          error_mark_node.
  
  2007-05-28  Andrew Pinski  <andrew_pinski@playstation.sony.com>
  
          * gcc.dg/boolcomplex-1.c: New test.
  
          * g++.dg/ext/boolcomplex-1.c: New test
........
  r125157 | danglin | 2007-05-28 18:01:32 -0700 (Mon, 28 May 2007) | 11 lines
  
  	* pa/constraints.md: New file.
  	* pa.md: Include constraints.md.
  	* pa.c (cint_ok_for_move): Avoid using CONST_OK_FOR_LETTER_P.
  	(integer_store_memory_operand, ldil_cint_p): New functions.
  	* pa-protos.h (integer_store_memory_operand, ldil_cint_p): Declare.
  	* pa.h (CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P,
  	IS_RELOADING_PSEUDO_P, EXTRA_CONSTRAINT): Remove.
  	* pa32-regs.h (REG_CLASS_FROM_LETTER): Remove.
  	* pa64-regs.h (REG_CLASS_FROM_LETTER): Remove.
........
  r125158 | danglin | 2007-05-28 18:12:58 -0700 (Mon, 28 May 2007) | 3 lines
  
  	* doc/md.texi: Document constraints on HP PA-RISC.
........
  r125159 | brooks | 2007-05-28 20:40:00 -0700 (Mon, 28 May 2007) | 2 lines
  
  * trans-array.c (gfc_conv_expr_descriptor): Edit comment.
........
  r125160 | dannysmith | 2007-05-29 01:09:16 -0700 (Tue, 29 May 2007) | 16 lines
  
  libgcc 
  	* config.host (i[34567]86-*-cygwin* | i[34567]86-*-mingw*) Add
  	crtfastmath.o to extra_parts.  Add i386/t-crtfm to tmake_file.
  	* config/i386/t-crtfm: Compile crtfastmath.o with
  	-minline-all-stringops.
  
  gcc
  
  	* config/i386/t-crtfm: Compile crtfastmath.o with
  	-minline-all-stringops.
  	* config/i386/cygwin.h (ENDFILE_SPECS): Add crtfastmath.o.
  	* config/i386/mingw32.h (ENDFILE_SPECS): Add crtfastmath.o.
........
  r125161 | tobi | 2007-05-29 02:03:03 -0700 (Tue, 29 May 2007) | 15 lines
  
  2007-05-28  Tobias Schlter  <tobi@gcc.gnu.org>
  fortran/
  * gfortran.h (gfc_generic_isym_id): Add GFC_ISYM_SIZEOF.
  * intrinsic.c (add_functions): Add stuff for SIZEOF intrinsic.
  * intrinsic.h (gfc_check_sizeof): Add prototype of ...
  * check.c (gfc_check_sizeof): .. new function.
  * trans-intrinsic.c (gfc_conv_intrinsic_sizeof): New function.
  (gfc_conv_intrinsic_strcmp): Whitespace fix.
  (gfc_conv_intrinsic_array_transfer): Remove double initialization,
  use fold_build. where appropriate.
  (gfc_conv_intrinsic_function): Add case for SIZEOF.
  * intrinsic.texi: Add documentation for SIZEOF.
  testsuite/
  * gfortran.dg/sizeof.f90: New.
........
  r125162 | dberlin | 2007-05-29 06:09:30 -0700 (Tue, 29 May 2007) | 5 lines
  
  2007-05-29  Daniel Berlin  <dberlin@dberlin.org>
  
  	* tree-ssa-alias.c: Add aliasing overview.
........
  r125163 | paolo | 2007-05-29 07:22:40 -0700 (Tue, 29 May 2007) | 9 lines
  
  2007-05-29  Paolo Carlini  <pcarlini@suse.de>
  
  	* aclocal.m4: Regenerate.
  
  	* testsuite/17_intro/headers/c++1998/c++_for_c.tar: Remove.
  	* testsuite/17_intro/headers/c++1998/c++.tar: Likewise.
........
  r125164 | hjl | 2007-05-29 07:30:42 -0700 (Tue, 29 May 2007) | 6 lines
  
  2007-05-29  H.J. Lu  <hongjiu.lu@intel.com>
  
  	* configure.ac: Don't include ../config/confsubdir.m4.
  	* aclocal.m4: Regenerated.
  	* configure: Likewise.
........
  r125168 | dfranke | 2007-05-29 14:10:48 -0700 (Tue, 29 May 2007) | 17 lines
  
  2007-05-29  Daniel Franke  <franke.daniel@gmail.com>
  
          * gfortran.h: Renamed 'enum gfc_generic_isym_id' to 'enum gfc_isym_id',
          added missing GFC_ISYM_* enumerators, ordered alphabetically.
          (struct gfc_intrinsic_sym): Renamed 'generic_id' to 'id'.
          (gfc_find_subroutine): New prototype.
          * intrinsic.c (add_sym, add_sym_*): Added argument 'id' and changed all callers.
          (find_subroutine): Renamed to 'gfc_find_subroutine', removed static.
          * dependency.c: Changed usage of isym->generic_id to isym->id.
          * openmp.c: Likewise.
          * resolve.c: Likewise.
          * trans-array.c: Likewise.
          * trans-expr.c: Likewise.
          * trans-intrinsic.c: Likewise.
          * trans-openmp.c: Likewise.
........
  r125172 | rakdver | 2007-05-29 14:55:47 -0700 (Tue, 29 May 2007) | 29 lines
  
  	* tree-vectorizer.h (DR_MISALIGNMENT): Cast aux to integer.
  	(SET_DR_MISALIGNMENT): New.
  	* tree-vect-analyze.c (vect_compute_data_ref_alignment,
  	vect_update_misalignment_for_peel, vect_enhance_data_refs_alignment):
  	Use SET_DR_MISALIGNMENT.
  	* tree-predcom.c (split_data_refs_to_components): Cast dr->aux from
  	pointer.
  	* tree-data-ref.c (create_data_ref, compute_all_dependences,
  	find_loop_nest): Export.
  	* tree-data-ref.h (struct data_reference): Change aux field to pointer.
  	(create_data_ref, compute_all_dependences, find_loop_nest): Declare.
  	* tree-ssa-loop-prefetch.c: Include tree-data-ref.h.
  	(L1_CACHE_SIZE_BYTES, L2_CACHE_SIZE_BYTES, NONTEMPORAL_FRACTION):
  	New macros.
  	(struct mem_ref): Add field reuse_distance.
  	(find_or_create_group, record_ref): Use XNEW instead of xcalloc.
  	Initialize reuse_distance field.
  	(issue_prefetch_ref): Select temporality of prefetch according to
  	reuse_distance.
  	(volume_of_references, volume_of_dist_vector, add_subscript_strides,
  	self_reuse_distance, determine_loop_nest_reuse): New functions.
  	(loop_prefetch_arrays): Call determine_loop_nest_reuse.
  	(tree_ssa_prefetch_arrays): Dump L2 cache size.
  	* Makefile.in (tree-ssa-loop-prefetch.o): Add TREE_DATA_REF_H
  	dependency.
  
  	* gcc.dg/tree-ssa/prefetch-6.c: New test.
........
  r125173 | hmchang | 2007-05-29 15:49:42 -0700 (Tue, 29 May 2007) | 5 lines
  
  	* config/i386/i386.c (ix86_function_regparm): Added checking of 
  	ix86_force_align_arg_pointer to determine the number of
  	register parameters.
  	* gcc.target/i386/stack-realign.c: New.
........
  r125176 | gccadmin | 2007-05-29 17:17:03 -0700 (Tue, 29 May 2007) | 1 line
  
  Daily bump.
........
  r125178 | daney | 2007-05-29 21:21:24 -0700 (Tue, 29 May 2007) | 4 lines
  
  	* config/mips/mips.c (mips_output_mi_thunk): Emit
  	NOTE_INSN_PROLOGUE_END at beginning of the thunk.
........
  r125179 | razya | 2007-05-30 00:17:55 -0700 (Wed, 30 May 2007) | 6 lines
  
  2007-05-28  Razya Ladelsky  <razya@il.ibm.com>
  
          * gcc.dg/matrix: New directory.
........
  r125180 | uros | 2007-05-30 04:24:32 -0700 (Wed, 30 May 2007) | 54 lines
  
  	* config/i386/i386.h (TARGET_ABM): New define.
  	(TARGET_POPCNT): Ditto.
  	(TARGET_64BIT, TARGET_MMX, TARGET_3DNOW, TARGET_3DNOW_A, TARGET_SSE*):
  	New temporary defines to redefine from OPTION_ISA_* defines.
  	(MASK_64BIT, MASK_MMX, MASK_3DNOW, MASK_3DNOW_A, MASK_SSE*):
  	New temporary defines to redefine from OPTION_MASK_ISA_* defines.
  	(ix86_isa_flags): New extern int declaration.
  	(TARGET_SUBTARGET_DEFAULT): New define.
  	(TARGET_SUBTARGET_ISA_DEFAULT): Ditto.
  	(TARGET_SUBTARGET32_DEFAULT): Ditto.
  	(TARGET_SUBTARGET32_ISA_DEFAULT): Ditto.
  	(TARGET_SUBTARGET64_ISA_DEFAULT): Ditto.
  	* config/i386/unix.h: Undef TARGET_SUBTARGET_DEFAULT before define.
  	* config/i386/darwin.h: Change TARGET_64BIT define to
  	OPTION_ISA_64BIT.
  
  	* config/i386/i386.opt (m3dnowa): Define as undocumented option
  	using existing "ix86_isa_flags" varible.
  	(m32, m64): Use existing "ix86_isa_flags" variable.
  	(mmmx, m3dnow): Ditto.
  	(msse, msse2, msse3, mssse3, msse4.1, msse4a): Ditto.
  	(mabm): Define as non-negative option using "x86_abm" variable.
  	(mpopcnt): Define as non-negative option using "x86_popcnt" variable.
  
  	* config/i386/i386.c (ix86_arch_features) [X86_ARCH_CMOVE]:
  	Rewrite feature test bitmap.
  	(ix86_isa_flags): New initialized global int varible.
  	(ix86_isa_flags_explicit): New static int variable.
  	(ix86_handle_option): Set "ix86_isa_flags_explicit" when mmmx, m3dnow,
  	msse, msse2, msse3, msse4.1 and msse4a option is processed.  Change
  	i86_isa_flags and ix86_isa_flags_explicit, not target_flags and
  	target_flags_explicit.
  	(override_options): Remove "target_enable" and "target_disable" fields
  	from "struct ptt". Update processor_target_table accordingly. Remove
  	PTA_PREFETCH_SSE from processor_alias_table entry if PTE_SSE is
  	defined and rearrange PTA_* bits.  Use "ix86_isa_flags" instead of
  	"target_flags" and "ix86_isa_flags_explicit" instead of
  	"target_flags_explicit" when masked with MASK_64BIT, MASK_MMX,
  	MASK_3DNOW, MASK_3DNOW_A or MASK_SSE*.  Set "x86_abm" to true when
  	PTA_ABM is set in processor_alias_table flags entry.  Set "x86_popcnt"
  	to true when either of PTA_POPCNT or PTA_ABM is set in
  	processor_alias_table flags entry.  Set "x86_prefetch_sse" to true
  	when either of PTA_PREFETCH_SSE or PTA_SSE is set in
  	processor_alias_table flags entry.  Remove handling of
  	"target_enable" and "target_disable" fields of processor_target_table.
  	Mask "target_flags" with TARGET_SUBTARGET32_DEFAULT for 32-bit
  	targets or with TARGET_SUBTARGET64_DEFAULT for 64-bit targets.
  	Mask "ix86_isa_flags" with TARGET_SUBTARGET32_ISA_DEFAULT for 32-bit
  	targets or with TARGET_SUBTARGET64_ISA_DEFAULT for 64-bit targets.
  	(def_builtin): Mask "mask" variable with "ix86_isa_flags", not
  	"target_flags".
  	(TARGET_DEFAULT_TARGET_FLAGS): Do not include TARGET_64BIT_DEFAULT.
........
  r125181 | rakdver | 2007-05-30 06:29:51 -0700 (Wed, 30 May 2007) | 13 lines
  
  	* tree-scalar-evolution.c (scev_const_prop): Do not create labels.
  	* tree-ssa-sink.c (statement_sink_location): Return basic block and
  	bsi of the location where statements should be inserted.
  	(sink_code_in_bb): Take bsi from statement_sink_location.
  	* lambda-code.c (lambda_loopnest_to_gcc_loopnest): Use bsi_after_labels
  	instead of bsi_start.
  	* tree-profile.c (tree_gen_ic_func_profiler): Pass BSI_NEW_STMT to
  	bsi_insert_after.
  	* tree-cfg.c (bsi_move_after): Pass BSI_NEW_STMT to bsi_insert_after.
  	(bsi_move_before): Document inconsistency with bsi_move_after.
  	(tree_redirect_edge_and_branch): Do not create labels if not necessary.
........
  r125182 | jakub | 2007-05-30 06:32:34 -0700 (Wed, 30 May 2007) | 4 lines
  
  	* configure.in: Don't use -fkeep-inline-functions for GCC < 3.3.1.
  	* configure: Rebuilt.
........
  r125183 | jakub | 2007-05-30 06:46:25 -0700 (Wed, 30 May 2007) | 6 lines
  
  	* except.c (duplicate_eh_regions): Clear prev_try if
  	ERT_MUST_NOT_THROW region is inside of ERT_TRY region.
  
  	* g++.dg/gomp/pr31769.C: New test.
........
  r125187 | rguenth | 2007-05-30 07:11:06 -0700 (Wed, 30 May 2007) | 9 lines
  
  2007-05-30  Richard Guenther  <rguenther@suse.de>
  
  	* gimplify.c (gimplify_omp_atomic_pipeline): Use correct
  	types for comparison.
  	* fold-const.c (fold_comparison): Call maybe_canonicalize_comparison
  	with original typed arguments.
  	* config/i386/i386.c (ix86_gimplify_va_arg): Fix type mismatches.
........
  r125189 | uros | 2007-05-30 07:44:35 -0700 (Wed, 30 May 2007) | 7 lines
  
  	* config/i386/i386.h (MASK_64BIT, MASK_MMX, MASK_3DNOW*, MASK_SSE*):
  	Remove defines.
  	* config/i386/biarch.h (TARGET_64BIT_DEFAULT): Define to
  	OPTION_MASK_ISA_64BIT.
  	* config/i386/i386.c: Rename MASK_* macros to OPTION_MASK_ISA_*.
........
  r125191 | rguenth | 2007-05-30 08:41:03 -0700 (Wed, 30 May 2007) | 5 lines
  
  2007-05-30  Richard Guenther  <rguenther@suse.de>
  
  	* MAINTAINERS (Various Maintainers): Add myself as
  	auto-vectorizer maintainer.
........
  r125192 | echristo | 2007-05-30 10:07:58 -0700 (Wed, 30 May 2007) | 22 lines
  
  2007-05-30  Eric Christopher  <echristo@gmail.com>
  
  	* genrecog.c: Include regs.h in generated file.
  	* genemit.c: Ditto. Fix up formatting.
  	* config/mn10300/constraints.md: New.
  	* config/mn10300/mn10300.md: Include.
  	* config/mn10300/mn10300.c(mn10300_secondary_reload_class):
  	Fix up for removed macro.
  	* config/mn10300/predicates.md (call_address_operand):  Ditto.
  	* config/mn10300/mn10300.h (REG_CLASS_FROM_LETTER): Delete.
  	(CONST_OK_FOR_I): Ditto.
  	(CONST_OK_FOR_J): Ditto.
  	(CONST_OK_FOR_K): Ditto.
  	(CONST_OK_FOR_L): Ditto.
  	(CONST_OK_FOR_M): Ditto.
  	(CONST_OK_FOR_N): Ditto.
  	(CONST_DOUBLE_OK_FOR_LETTER_P): Ditto.
  	(OK_FOR_Q): Ditto.
  	(OK_FOR_R): Ditto.
  	(OK_FOR_T): Ditto.
  	(EXTRA_CONSTRAINT): Ditto.
........
  r125193 | hjl | 2007-05-30 10:48:10 -0700 (Wed, 30 May 2007) | 5 lines
  
  2007-05-30  H.J. Lu  <hongjiu.lu@intel.com>
  
  	* libtool.m4 (_LT_LANG_GCJ_CONFIG): Use gcc to test gcj features.
........
  r125194 | hjl | 2007-05-30 10:52:05 -0700 (Wed, 30 May 2007) | 8 lines
  
  2007-05-30  H.J. Lu  <hongjiu.lu@intel.com>
  
  	* configure.ac: Add AC_CONFIG_AUX_DIR(../..).
  	* aclocal.m4: Regenerated.
  	* configure: Likewise.
  	* Makefile.in: Likewise.
........
  r125195 | hjl | 2007-05-30 10:54:48 -0700 (Wed, 30 May 2007) | 5 lines
  
  2007-05-30  H.J. Lu  <hongjiu.lu@intel.com>
  
  	* configure: Regenerated.
........
  r125196 | rsandifo | 2007-05-30 12:04:09 -0700 (Wed, 30 May 2007) | 49 lines
  
  gcc/
  	* config.gcc (arm-wrs-vxworks): Remove dbxelf.h from tm_file.
  	Add vx-common.h.  Include vxworks.h between vx-common.h and
  	arm/vxworks.h.
  	* config/vx-common.h (DWARF2_UNWIND_INFO): Undefine before
  	redefining.
  	* config/vxworks.h (TARGET_ASM_CONSTRUCTOR): Likewise.
  	(TARGET_ASM_DESTRUCTOR): Likewise.
  	* config/arm/vxworks.h (TARGET_OS_CPP_BUILTINS): Check arm_arch_xscale
  	instead of arm_is_xscale.  Use VXWORKS_OS_CPP_BUILTINS.
  	(OVERRIDE_OPTIONS, SUBTARGET_CPP_SPEC): Define.
  	(CC1_SPEC): Add -tstrongarm.  Line up backslashes.
  	(VXWORKS_ENDIAN_SPEC): Define.
  	(ASM_SPEC): Add VXWORKS_ENDIAN_SPEC.
  	(LIB_SPEC, STARTFILE_SPEC, ENDFILE_SPEC): Redefine to their
  	VXWORKS_* equivalents.
  	(LINK_SPEC): Likewise, but add VXWORKS_ENDIAN_SPEC.
  	(ASM_FILE_START): Delete.
  	(TARGET_VERSION): Reformat.
  	(FPUTYPE_DEFAULT, FUNCTION_PROFILER): Define.
  	(DEFAULT_STRUCTURE_SIZE_BOUNDARY): Define.
  	* config/arm/t-vxworks (LIB1ASMSRC, LIB1ASMFUNCS): Define.
  	(FPBIT, DPBIT): Define.
  	(fp-bit.c, dp-bit.c): New rules.
  	(MULTILIB_OPTIONS): Add strongarm, -mrtp and -mrtp/-fPIC multilibs.
  	(MULTILIB_MATCHES, MULTILIB_EXCEPTIONS): Define.
  	* config/arm/arm-protos.h (arm_emit_call_insn): Declare.
  	* config/arm/arm.h: Include vxworks-dummy.h.
  	* config/arm/arm.c (arm_elf_asm_constructor, arm_elf_asm_destructor):
  	Mark with ATTRIBUTE_UNUSED.
  	(arm_override_options): Do not allow VxWorks RTP PIC to be used
  	for Thumb.  Force r9 to be the PIC register for VxWorks RTPs and
  	make it incompatible with -msingle-pic-base.
  	(arm_function_ok_for_sibcall): Return false for calls that might
  	go through a VxWorks PIC PLT entry.
  	(require_pic_register): New function, split out from...
  	(legitimize_pic_address): ...here.  Do not use GOTOFF accesses
  	for VxWorks RTPs.
  	(arm_load_pic_register): Handle the VxWorks RTP initialization
  	sequence.  Use pic_reg as a shorthand for cfun->machine->pic_reg.
  	(arm_emit_call_insn): New function.
  	(arm_assemble_integer): Do not use GOTOFF accesses for VxWorks RTP.
  	* config/arm/arm.md (UNSPEC_PIC_OFFSET): New unspec number.
  	(pic_offset_arm): New pattern.
  	(call, call_value): Use arm_emit_call_insn.
  	(call_internal, call_value_internal): New expanders.
  	* config/arm/lib1funcs.asm (__PLT__): Define to empty for
  	VxWorks unless __PIC__.
........
  r125197 | kazu | 2007-05-30 12:24:28 -0700 (Wed, 30 May 2007) | 3 lines
  
  	* gcc.target/arm/pr27387.C: Move and rename to ...
  	* g++.dg/inherit/thunk8.C: ... here.
........
  r125198 | uros | 2007-05-30 13:07:06 -0700 (Wed, 30 May 2007) | 2 lines
  
          * config/i386/darwin.h (TARGET_SUBTARGET_DEFAULT): Undef before define.
........
  r125200 | rguenth | 2007-05-30 14:17:32 -0700 (Wed, 30 May 2007) | 5 lines
  
  2007-05-30  Richard Guenther  <rguenther@suse.de>
  
  	* g++.dg/dg.exp: Prune torture/.
  	* g++.dg/torture/dg-torture.exp: New testsuite.
........
  r125201 | jakub | 2007-05-30 14:24:24 -0700 (Wed, 30 May 2007) | 6 lines
  
  	* decl.c (cp_finish_decl): Clear TREE_READONLY flag on TREE_STATIC
  	variables that need runtime initialization.
  
  	* g++.dg/opt/static5.C: New test.
........
  r125202 | mueller | 2007-05-30 15:22:43 -0700 (Wed, 30 May 2007) | 3 lines
  
          * cgraphunit.c (cgraph_analyze_function): Remove
          computation of inline parameters.
........
  r125203 | ian | 2007-05-30 15:51:22 -0700 (Wed, 30 May 2007) | 2 lines
  
  	* tree-vrp.c (compare_names): Initialize sop.
........
  r125205 | rakdver | 2007-05-30 16:25:30 -0700 (Wed, 30 May 2007) | 4 lines
  
  	* MAINTAINERS (Various Maintainers): Add myself as
  	auto-vectorizer maintainer.
........
  r125208 | gccadmin | 2007-05-30 17:16:52 -0700 (Wed, 30 May 2007) | 1 line
  
  Daily bump.
........

Added:
    branches/fixed-point/config/confsubdir.m4
      - copied unchanged from r125208, trunk/config/confsubdir.m4
    branches/fixed-point/gcc/config/mn10300/constraints.md
      - copied unchanged from r125208, trunk/gcc/config/mn10300/constraints.md
    branches/fixed-point/gcc/config/pa/constraints.md
      - copied unchanged from r125208, trunk/gcc/config/pa/constraints.md
    branches/fixed-point/gcc/matrix-reorg.c
      - copied unchanged from r125208, trunk/gcc/matrix-reorg.c
    branches/fixed-point/gcc/testsuite/g++.dg/ext/boolcomplex-1.c
      - copied unchanged from r125208, trunk/gcc/testsuite/g++.dg/ext/boolcomplex-1.c
    branches/fixed-point/gcc/testsuite/g++.dg/gomp/pr31769.C
      - copied unchanged from r125208, trunk/gcc/testsuite/g++.dg/gomp/pr31769.C
    branches/fixed-point/gcc/testsuite/g++.dg/inherit/thunk8.C
      - copied unchanged from r125208, trunk/gcc/testsuite/g++.dg/inherit/thunk8.C
    branches/fixed-point/gcc/testsuite/g++.dg/opt/array2.C
      - copied unchanged from r125208, trunk/gcc/testsuite/g++.dg/opt/array2.C
    branches/fixed-point/gcc/testsuite/g++.dg/opt/static5.C
      - copied unchanged from r125208, trunk/gcc/testsuite/g++.dg/opt/static5.C
    branches/fixed-point/gcc/testsuite/g++.dg/torture/
      - copied from r125208, trunk/gcc/testsuite/g++.dg/torture/
    branches/fixed-point/gcc/testsuite/gcc.c-torture/execute/vrp-7.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.c-torture/execute/vrp-7.c
    branches/fixed-point/gcc/testsuite/gcc.dg/boolcomplex-1.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.dg/boolcomplex-1.c
    branches/fixed-point/gcc/testsuite/gcc.dg/matrix/
      - copied from r125208, trunk/gcc/testsuite/gcc.dg/matrix/
    branches/fixed-point/gcc/testsuite/gcc.dg/tree-ssa/prefetch-6.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.dg/tree-ssa/prefetch-6.c
    branches/fixed-point/gcc/testsuite/gcc.target/i386/pr32065-1.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.target/i386/pr32065-1.c
    branches/fixed-point/gcc/testsuite/gcc.target/i386/pr32065-2.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.target/i386/pr32065-2.c
    branches/fixed-point/gcc/testsuite/gcc.target/i386/stack-realign.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.target/i386/stack-realign.c
    branches/fixed-point/gcc/testsuite/gcc.target/mips/near-far-1.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.target/mips/near-far-1.c
    branches/fixed-point/gcc/testsuite/gcc.target/mips/near-far-2.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.target/mips/near-far-2.c
    branches/fixed-point/gcc/testsuite/gcc.target/mips/near-far-3.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.target/mips/near-far-3.c
    branches/fixed-point/gcc/testsuite/gcc.target/mips/near-far-4.c
      - copied unchanged from r125208, trunk/gcc/testsuite/gcc.target/mips/near-far-4.c
    branches/fixed-point/gcc/testsuite/gfortran.dg/allocate_stat_1.f90
      - copied unchanged from r125208, trunk/gcc/testsuite/gfortran.dg/allocate_stat_1.f90
    branches/fixed-point/gcc/testsuite/gfortran.dg/array_constructor_17.f90
      - copied unchanged from r125208, trunk/gcc/testsuite/gfortran.dg/array_constructor_17.f90
    branches/fixed-point/gcc/testsuite/gfortran.dg/func_result_3.f90
      - copied unchanged from r125208, trunk/gcc/testsuite/gfortran.dg/func_result_3.f90
    branches/fixed-point/gcc/testsuite/gfortran.dg/sizeof.f90
      - copied unchanged from r125208, trunk/gcc/testsuite/gfortran.dg/sizeof.f90
    branches/fixed-point/gcc/testsuite/gfortran.dg/transfer_hollerith_1.f90
      - copied unchanged from r125208, trunk/gcc/testsuite/gfortran.dg/transfer_hollerith_1.f90
    branches/fixed-point/gcc/testsuite/gfortran.dg/transfer_simplify_3.f90
      - copied unchanged from r125208, trunk/gcc/testsuite/gfortran.dg/transfer_simplify_3.f90
    branches/fixed-point/gcc/testsuite/gfortran.dg/transfer_simplify_4.f90
      - copied unchanged from r125208, trunk/gcc/testsuite/gfortran.dg/transfer_simplify_4.f90
Removed:
    branches/fixed-point/gcc/testsuite/gcc.target/arm/pr27387.C
    branches/fixed-point/libstdc++-v3/testsuite/17_intro/headers/c++1998/c++.tar
    branches/fixed-point/libstdc++-v3/testsuite/17_intro/headers/c++1998/c++_for_c.tar
Modified:
    branches/fixed-point/   (props changed)
    branches/fixed-point/ChangeLog
    branches/fixed-point/MAINTAINERS
    branches/fixed-point/config/ChangeLog
    branches/fixed-point/configure
    branches/fixed-point/configure.ac
    branches/fixed-point/gcc/ChangeLog
    branches/fixed-point/gcc/DATESTAMP
    branches/fixed-point/gcc/Makefile.in
    branches/fixed-point/gcc/basic-block.h
    branches/fixed-point/gcc/c-typeck.c
    branches/fixed-point/gcc/cfgcleanup.c
    branches/fixed-point/gcc/cfglayout.c
    branches/fixed-point/gcc/cfgloopanal.c
    branches/fixed-point/gcc/cgraph.h
    branches/fixed-point/gcc/cgraphunit.c
    branches/fixed-point/gcc/common.opt
    branches/fixed-point/gcc/config.gcc
    branches/fixed-point/gcc/config/arm/arm-protos.h
    branches/fixed-point/gcc/config/arm/arm.c
    branches/fixed-point/gcc/config/arm/arm.h
    branches/fixed-point/gcc/config/arm/arm.md
    branches/fixed-point/gcc/config/arm/lib1funcs.asm
    branches/fixed-point/gcc/config/arm/t-vxworks
    branches/fixed-point/gcc/config/arm/vxworks.h
    branches/fixed-point/gcc/config/avr/avr.c
    branches/fixed-point/gcc/config/darwin.c
    branches/fixed-point/gcc/config/i386/biarch64.h
    branches/fixed-point/gcc/config/i386/cygwin.h
    branches/fixed-point/gcc/config/i386/darwin.h
    branches/fixed-point/gcc/config/i386/i386-protos.h
    branches/fixed-point/gcc/config/i386/i386.c
    branches/fixed-point/gcc/config/i386/i386.h
    branches/fixed-point/gcc/config/i386/i386.md
    branches/fixed-point/gcc/config/i386/i386.opt
    branches/fixed-point/gcc/config/i386/mingw32.h
    branches/fixed-point/gcc/config/i386/sfp-machine.h
    branches/fixed-point/gcc/config/i386/sse.md
    branches/fixed-point/gcc/config/i386/t-darwin
    branches/fixed-point/gcc/config/i386/t-darwin64
    branches/fixed-point/gcc/config/i386/unix.h
    branches/fixed-point/gcc/config/mips/mips.c
    branches/fixed-point/gcc/config/mips/predicates.md
    branches/fixed-point/gcc/config/mn10300/mn10300.c
    branches/fixed-point/gcc/config/mn10300/mn10300.h
    branches/fixed-point/gcc/config/mn10300/mn10300.md
    branches/fixed-point/gcc/config/mn10300/predicates.md
    branches/fixed-point/gcc/config/pa/pa-protos.h
    branches/fixed-point/gcc/config/pa/pa.c
    branches/fixed-point/gcc/config/pa/pa.h
    branches/fixed-point/gcc/config/pa/pa.md
    branches/fixed-point/gcc/config/pa/pa32-regs.h
    branches/fixed-point/gcc/config/pa/pa64-regs.h
    branches/fixed-point/gcc/config/rs6000/rs6000.c
    branches/fixed-point/gcc/config/sh/symbian.c
    branches/fixed-point/gcc/config/spu/spu.c
    branches/fixed-point/gcc/config/vx-common.h
    branches/fixed-point/gcc/config/vxworks.h
    branches/fixed-point/gcc/cp/ChangeLog
    branches/fixed-point/gcc/cp/decl.c
    branches/fixed-point/gcc/cp/typeck.c
    branches/fixed-point/gcc/df-problems.c
    branches/fixed-point/gcc/df-scan.c
    branches/fixed-point/gcc/doc/cpp.texi
    branches/fixed-point/gcc/doc/extend.texi
    branches/fixed-point/gcc/doc/install.texi
    branches/fixed-point/gcc/doc/invoke.texi
    branches/fixed-point/gcc/doc/md.texi
    branches/fixed-point/gcc/doc/tm.texi
    branches/fixed-point/gcc/domwalk.c
    branches/fixed-point/gcc/ebitmap.c
    branches/fixed-point/gcc/ebitmap.h
    branches/fixed-point/gcc/except.c
    branches/fixed-point/gcc/fold-const.c
    branches/fixed-point/gcc/fortran/ChangeLog
    branches/fixed-point/gcc/fortran/arith.c
    branches/fixed-point/gcc/fortran/check.c
    branches/fixed-point/gcc/fortran/data.c
    branches/fixed-point/gcc/fortran/dependency.c
    branches/fixed-point/gcc/fortran/dump-parse-tree.c
    branches/fixed-point/gcc/fortran/expr.c
    branches/fixed-point/gcc/fortran/gfortran.h
    branches/fixed-point/gcc/fortran/gfortran.texi
    branches/fixed-point/gcc/fortran/intrinsic.c
    branches/fixed-point/gcc/fortran/intrinsic.h
    branches/fixed-point/gcc/fortran/intrinsic.texi
    branches/fixed-point/gcc/fortran/io.c
    branches/fixed-point/gcc/fortran/openmp.c
    branches/fixed-point/gcc/fortran/parse.c
    branches/fixed-point/gcc/fortran/primary.c
    branches/fixed-point/gcc/fortran/resolve.c
    branches/fixed-point/gcc/fortran/symbol.c
    branches/fixed-point/gcc/fortran/target-memory.c
    branches/fixed-point/gcc/fortran/target-memory.h
    branches/fixed-point/gcc/fortran/trans-array.c
    branches/fixed-point/gcc/fortran/trans-const.c
    branches/fixed-point/gcc/fortran/trans-expr.c
    branches/fixed-point/gcc/fortran/trans-intrinsic.c
    branches/fixed-point/gcc/fortran/trans-openmp.c
    branches/fixed-point/gcc/fortran/trans-stmt.c
    branches/fixed-point/gcc/fortran/trans.h
    branches/fixed-point/gcc/gcc.c
    branches/fixed-point/gcc/genemit.c
    branches/fixed-point/gcc/genrecog.c
    branches/fixed-point/gcc/gimplify.c
    branches/fixed-point/gcc/global.c
    branches/fixed-point/gcc/haifa-sched.c
    branches/fixed-point/gcc/ifcvt.c
    branches/fixed-point/gcc/ipa-cp.c
    branches/fixed-point/gcc/ipa-inline.c
    branches/fixed-point/gcc/ipa-type-escape.c
    branches/fixed-point/gcc/lambda-code.c
    branches/fixed-point/gcc/langhooks-def.h
    branches/fixed-point/gcc/langhooks.c
    branches/fixed-point/gcc/loop-init.c
    branches/fixed-point/gcc/loop-iv.c
    branches/fixed-point/gcc/modulo-sched.c
    branches/fixed-point/gcc/omega.c
    branches/fixed-point/gcc/omega.h
    branches/fixed-point/gcc/optabs.h
    branches/fixed-point/gcc/passes.c
    branches/fixed-point/gcc/predict.c
    branches/fixed-point/gcc/real.c
    branches/fixed-point/gcc/targhooks.c
    branches/fixed-point/gcc/targhooks.h
    branches/fixed-point/gcc/testsuite/ChangeLog
    branches/fixed-point/gcc/testsuite/g++.dg/dg.exp
    branches/fixed-point/gcc/testsuite/gfortran.dg/io_constraints_2.f90
    branches/fixed-point/gcc/tree-affine.c
    branches/fixed-point/gcc/tree-cfg.c
    branches/fixed-point/gcc/tree-chrec.c
    branches/fixed-point/gcc/tree-data-ref.c
    branches/fixed-point/gcc/tree-data-ref.h
    branches/fixed-point/gcc/tree-flow.h
    branches/fixed-point/gcc/tree-if-conv.c
    branches/fixed-point/gcc/tree-pass.h
    branches/fixed-point/gcc/tree-predcom.c
    branches/fixed-point/gcc/tree-profile.c
    branches/fixed-point/gcc/tree-scalar-evolution.c
    branches/fixed-point/gcc/tree-ssa-alias-warnings.c
    branches/fixed-point/gcc/tree-ssa-alias.c
    branches/fixed-point/gcc/tree-ssa-coalesce.c
    branches/fixed-point/gcc/tree-ssa-dce.c
    branches/fixed-point/gcc/tree-ssa-forwprop.c
    branches/fixed-point/gcc/tree-ssa-live.c
    branches/fixed-point/gcc/tree-ssa-loop-ch.c
    branches/fixed-point/gcc/tree-ssa-loop-manip.c
    branches/fixed-point/gcc/tree-ssa-loop-niter.c
    branches/fixed-point/gcc/tree-ssa-loop-prefetch.c
    branches/fixed-point/gcc/tree-ssa-loop.c
    branches/fixed-point/gcc/tree-ssa-pre.c
    branches/fixed-point/gcc/tree-ssa-sink.c
    branches/fixed-point/gcc/tree-ssa-structalias.c
    branches/fixed-point/gcc/tree-ssa-threadupdate.c
    branches/fixed-point/gcc/tree-vect-analyze.c
    branches/fixed-point/gcc/tree-vect-transform.c
    branches/fixed-point/gcc/tree-vectorizer.h
    branches/fixed-point/gcc/tree-vrp.c
    branches/fixed-point/gcc/treestruct.def
    branches/fixed-point/gcc/varpool.c
    branches/fixed-point/libgcc/ChangeLog
    branches/fixed-point/libgcc/config.host
    branches/fixed-point/libgcc/config/i386/t-crtfm
    branches/fixed-point/libgfortran/ChangeLog
    branches/fixed-point/libgfortran/io/list_read.c
    branches/fixed-point/libgfortran/io/open.c
    branches/fixed-point/libgfortran/io/transfer.c
    branches/fixed-point/libgfortran/io/unix.c
    branches/fixed-point/libgfortran/io/write.c
    branches/fixed-point/libgfortran/libgfortran.h
    branches/fixed-point/libgfortran/runtime/memory.c
    branches/fixed-point/libgfortran/runtime/string.c
    branches/fixed-point/libjava/ChangeLog
    branches/fixed-point/libjava/aclocal.m4
    branches/fixed-point/libjava/classpath/ChangeLog.gcj
    branches/fixed-point/libjava/classpath/Makefile.in
    branches/fixed-point/libjava/classpath/aclocal.m4
    branches/fixed-point/libjava/classpath/configure
    branches/fixed-point/libjava/classpath/configure.ac
    branches/fixed-point/libjava/configure
    branches/fixed-point/libstdc++-v3/ChangeLog
    branches/fixed-point/libstdc++-v3/acinclude.m4
    branches/fixed-point/libstdc++-v3/aclocal.m4
    branches/fixed-point/libstdc++-v3/config.h.in
    branches/fixed-point/libstdc++-v3/configure
    branches/fixed-point/libstdc++-v3/include/c_global/cwchar
    branches/fixed-point/libstdc++-v3/include/c_std/cwchar
    branches/fixed-point/libstdc++-v3/include/ext/throw_allocator.h
    branches/fixed-point/libstdc++-v3/include/tr1/boost_shared_ptr.h
    branches/fixed-point/libtool.m4
    branches/fixed-point/maintainer-scripts/ChangeLog
    branches/fixed-point/maintainer-scripts/gcc_release

Propchange: branches/fixed-point/
            ('svnmerge-integrated' modified)



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]