1. 23 Nov, 2009 4 commits
  2. 22 Nov, 2009 8 commits
  3. 21 Nov, 2009 16 commits
  4. 20 Nov, 2009 12 commits
    • i386-builtin-types.awk: New file. · fe40daa0
      	* config/i386/i386-builtin-types.awk: New file.
      	* config/i386/i386-builtin-types.def: New file.
      	* config/i386/t-i386: Use them to build i386-builtin-types.inc.
      	* config/i386/i386.c: Include it.
      	(ix86_builtin_type_tab, ix86_get_builtin_type): New.
      	(ix86_builtin_func_type_tab, ix86_get_builtin_func_type): New.
      	(struct builtin_isa): Remove GTY marker.  Replace tree type with
      	ix86_builtin_func_type; add set_and_not_built_p.
      	(def_builtin): Change type parameter to tcode; use
      	ix86_get_builtin_func_type; update all callers.  Accept zero mask
      	to mean the builtin is unconditionally available.
      	(ix86_add_new_builtins): Use set_and_not_built_p instead of type
      	being set to NULL.
      	(enum ix86_special_builtin_type, enum ix86_builtin_type): Remove.
      	Update some users to rationalized enumeration codes from new include.
      	(enum multi_arg_type): Remove.  Replace all enumeration values
      	with defines to new ix86_builtin_func_type.
      	(ix86_init_mmx_sse_builtins): Don't build any types here.  Defer
      	all type resolution to def_builtin.
      	(ix86_init_builtin_types): Split out from ...
      	(ix86_init_builtins): ... here.  Use ix86_get_builtin_func_type.
      
      From-SVN: r154388
      Richard Henderson committed
    • Undo part of 2009-10-23 change · 497d3834
      From-SVN: r154380
      Michael Meissner committed
    • re PR c++/38646 (ICE with invalid specialization of variadic template) · 2282976b
      gcc/cp/
      
      2009-11-20  Simon Martin  <simartin@users.sourceforge.net>
      
      	PR c++/38646
      	* pt.c (process_partial_specialization): Do not turn wrongly located
      	parameter pack arguments into error_mark_node.
      	Split too long lines into two.
      
      gcc/testsuite/
      
      2009-11-20  Simon Martin  <simartin@users.sourceforge.net>
      
      	PR c++/38646
      	* g++.dg/cpp0x/pr38646.C: New test.
      
      From-SVN: r154378
      Simon Martin committed
    • re PR libstdc++/42019 (shared_ptr can not be used with -fno-rtti) · 70826946
      2009-11-20  Jonathan Wakely  <jwakely.gcc@gmail.com>
      
      	PR libstdc++/42019
      	* include/tr1/shared_ptr.h: Only use typeid when RTTI is enabled.
      	* include/bits/shared_ptr_base.h: Likewise.
      	* include/bits/shared_ptr.h: Likewise.
      	* testsuite/tr1/2_general_utilities/shared_ptr/misc/42019.cc: New.
      	* testsuite/20_util/shared_ptr/misc/42019.cc: New.
      
      From-SVN: r154377
      Jonathan Wakely committed
    • invoke.texi: Document ARM -mcpu=cortex-a5. · d5473643
      2009-11-20  Paul Brook  <paul@codesourcery.com>
      
      	gcc/
      	* doc/invoke.texi: Document ARM -mcpu=cortex-a5.
      	* config/arm/arm-cores.def: Add cortex-a5.
      	* config/arm/bpabi.h (BE8_LINK_SPEC): Add mcpu=cortex-a5.
      	* config/arm/arm-tune.md: Regenerate.
      
      From-SVN: r154375
      Paul Brook committed
    • re PR tree-optimization/39960 (struct-reorg is broken) · eed8fcad
      2009-11-17 Olga Golovanevsky <olga@il.ibm.com>
      
      	PR middle-end/39960
      	* ipa-struct-reorg.c (find_pos_in_stmt): New parameter.
      	(ref_pos): New field in structure.
      	(insert_new_var_in_stmt): New function.
      
      From-SVN: r154374
      Olga Golovanevsky committed
    • config.gcc (alpha*-dec-osf[45]*): Set use_gcc_stdint. · 25bcd7ea
      	gcc:
      	* config.gcc (alpha*-dec-osf[45]*): Set use_gcc_stdint.
      	* config/alpha/osf.h (SIG_ATOMIC_TYPE): Define.
      	(INT8_TYPE, INT16_TYPE, INT32_TYPE, INT64_TYPE): Define.
      	(UINT8_TYPE, UINT16_TYPE, UINT32_TYPE, UINT64_TYPE): Define.
      	(INT_LEAST8_TYPE, INT_LEAST16_TYPE, INT_LEAST32_TYPE,
      	(INT_LEAST64_TYPE): Define.
      	(UINT_LEAST8_TYPE, UINT_LEAST16_TYPE, UINT_LEAST32_TYPE,
      	UINT_LEAST64_TYPE): Define.
      	(INT_FAST8_TYPE, INT_FAST16_TYPE, INT_FAST32_TYPE,
      	INT_FAST64_TYPE): Define.
      	(UINT_FAST8_TYPE, UINT_FAST16_TYPE, UINT_FAST32_TYPE,
      	UINT_FAST64_TYPE): Define.
      	(INTPTR_TYPE, UINTPTR_TYPE): Define.
      
      	gcc/testsuite:
      	* gcc.dg/c99-stdint-6.c: Set dg-options for alpha*-dec-osf5*.
      	Wrap *int_least*_t tests in !NO_LEAST_TYPES.
      	Wrap *intmax_t tests in !NO_MAX_TYPES.
      
      From-SVN: r154373
      Rainer Orth committed
    • arm.h (ASM_OUTPUT_REG_PUSH): Handle STATIC_CHAIN_REGNUM specially for Thumb-1. · 2ee67fbb
      	gcc/
      	* config/arm/arm.h (ASM_OUTPUT_REG_PUSH): Handle STATIC_CHAIN_REGNUM
      	specially for Thumb-1.
      	(ASM_OUTPUT_REG_POP): Likewise.
      
      From-SVN: r154372
      Julian Brown committed
    • re PR c++/42060 ([c++0x] ICE throwing array with initializer list) · 10d3a72a
      cp/
      2009-11-20  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/42060
      	* except.c (build_throw): Check the tree returned by
      	decay_conversion for error_mark_node.
      
      testsuite/
      2009-11-20  Paolo Carlini  <paolo.carlini@oracle.com>
      
      	PR c++/42060
      	* g++.dg/cpp0x/initlist28.C: New.
      
      From-SVN: r154371
      Paolo Carlini committed
    • intrinsic.texi (C_F_PROCPOINTER): Remove obsolete comment. · 2848dbd3
      2009-11-20  Janus Weil  <janus@gcc.gnu.org>
      
      	* intrinsic.texi (C_F_PROCPOINTER): Remove obsolete comment.
      
      From-SVN: r154370
      Janus Weil committed
    • Remove testsuite/ from pathname. · fbbb752e
      From-SVN: r154365
      H.J. Lu committed
    • proc_ptr_comp_23.f90: Add a missing space. · aeb1da2e
      2009-11-20  H.J. Lu  <hongjiu.lu@intel.com>
      
      	* gfortran.dg/proc_ptr_comp_23.f90: Add a missing space.
      
      From-SVN: r154364
      H.J. Lu committed