1. 16 Nov, 2015 30 commits
    • re PR fortran/58027 ("Arithmetic overflow converting ..." in PARAMETER triggers an ICE) · 3e6ab828
      2015-11-16  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/58027
      	PR fortran/60993
      	* expr.c (gfc_check_init_expr): Prevent a redundant check when a
      	__convert_* function was inserted into an array constructor.
      	(gfc_check_assign_symbol): Check for an initialization expression
      	when a __convert_* was inserted.
      
      2015-11-16  Steven G. Kargl  <kargl@gcc.gnu.org>
      
      	PR fortran/58027
      	PR fortran/60993
      	* gfortran.dg/pr58027.f90: New test.
      
      From-SVN: r230433
      Steven G. Kargl committed
    • c-ada-spec.c (dump_ada_template): Use RECORD_OR_UNION_TYPE_P. · a868811e
      	* c-ada-spec.c (dump_ada_template): Use RECORD_OR_UNION_TYPE_P.
      	* c-common.c (c_common_get_alias_set): Likewise.
      	(handle_visibility_attribute): Likewise.
      
      From-SVN: r230432
      Marek Polacek committed
    • [Patch ARM] Add support for Cortex-A35 · 971f13d7
      gcc/
      
      	* config/arm/arm-cores.def (cortex-a35): New.
      	* config/arm/arm.c (arm_cortex_a35_tune): New.
      	* config/arm/arm-tables.opt: Regenerate.
      	* config/arm/arm-tune.md: Regenerate.
      	* config/arm/bpabi.h (BE8_LINK_SPEC): Add cortex-a35.
      	* config/arm/t-aprofile: Likewise.
      	* doc/invoke.texi (-mcpu): Likewise.
      
      From-SVN: r230431
      James Greenhalgh committed
    • Add missing v8a cpus to the t-aprofile file. · 6480dc9d
      gcc/
      	* config/arm/t-aprofile (MULTILIB_MATCHES): Add lines for exynos-m1
      	and qdf24xx and xgene1 to match -march=armv8-a.
      
      From-SVN: r230430
      Jim Wilson committed
    • simplify-rtx: Simplify sign_extend of lshiftrt to zero_extend (PR68330) · 7d006b0d
      Since r230164, in PR68330 combine ends up with a sign_extend of an
      lshiftrt by some constant, and it does not know to morph that into a
      zero_extract (the extend will always extend with zeroes).  I think
      it is best to let simplify-rtx always replace such a sign_extend by
      a zero_extend, after which everything works as expected.
      
      
      2015-11-15  Segher Boessenkool  <segher@kernel.crashing.org>
      
      	PR rtl-optimization/68330
      	* simplify-rtx.c (simplify_unary_operation_1): Simplify SIGN_EXTEND
      	of LSHIFTRT by a non-zero constant integer.
      
      From-SVN: r230429
      Segher Boessenkool committed
    • re PR tree-optimization/68306 (ICE: in vectorizable_store, at tree-vect-stmts.c:5651) · 513ecaea
      2015-11-16  Richard Biener  <rguenther@suse.de>
      
              PR tree-optimization/68306
      	* tree-vect-data-refs.c (vect_verify_datarefs_alignment): Fix
      	bogus copying from verify_data_ref_alignment and use continue
      	instead of return.
      
      From-SVN: r230428
      Richard Biener committed
    • re PR target/68277 ([SH]: error: insn does not satisfy its constraints when compiling erlang) · 2fe8dfe8
      gcc/
      	PR target/68277
      	* config/sh/sh.md (addsi3_scr): Handle reg overlap of operands[0] and
      	operands[2].
      	(*addsi3): Add another insn_and_split variant for reload.
      
      Co-Authored-By: Kaz Kojima <kkojima@gcc.gnu.org>
      
      From-SVN: r230425
      Oleg Endo committed
    • re PR middle-end/68117 (error: invalid PHI argument <<< Unknown tree: <invalid tree code> >>>) · 0d334e37
      2015-11-16  Richard Biener  <rguenther@suse.de>
      
      	PR middle-end/68117
      	* cfgexpand.c (pass_expand::execute): Destroy the edge
      	redirection var map before setting RTL CFG hooks.
      
      From-SVN: r230424
      Richard Biener committed
    • [i386]Migrate reduction optabs to reduc_<op>_scal · def4ad19
      	* config/i386/sse.md (reduc_splus_v8df): Rename to...
      	(reduc_plus_scal_v8df): ...here; reduce to temp and extract scalar.
      
      	(reduc_splus_v4df): Rename to...
      	(reduc_plus_scal_v4df): ...here; reduce to temp and extract scalar.
      
      	(reduc_splus_v2df): Rename to...
      	(reduc_plus_scal_v2df): ...here; reduce to temp and extract scalar.
      
      	(reduc_splus_v16sf): Rename to...
      	(reduc_plus_scal_v16sf): ...here; reduce to temp and extract scalar.
      
      	(reduc_splus_v8sf): Rename to...
      	(reduc_plus_scal_v8sf): ...here; reduce to temp and extract scalar.
      
      	(reduc_splus_v4sf): Rename to...
      	(reduc_plus_scal_v4sf): ...here; reduce to temp and extract scalar.
      
      	(reduc_<code>_<mode>, all 3 variants): Rename each to...
      	(reduc_<code>_scal_<mode>): ...here; reduce to temp and extract scalar.
      
      	(reduc_umin_v8hf): Rename to...
      	(reduc_umin_scal_v8hf): ...here; reduce to temp and extract scalar.
      
      From-SVN: r230423
      Alan Lawrence committed
    • Add __attribute__((__simd__)) to GCC. · fff77217
      gcc/
      	* omp-low.c (pass_omp_simd_clone::gate): If target allows - call
      	without additional conditions.
      	* doc/extend.texi (@item simd): New.
      gcc/c-family/
      	* c-common.c (handle_simd_attribute): New.
      	(struct attribute_spec): Add entry for "simd".
      	(handle_simd_attribute): New.
      gcc/c/
      	* c-parser.c (c_finish_omp_declare_simd): Look for
      	"simd" attribute as well. Update error message.
      gcc/cp/
      	* parser.c (cp_parser_late_parsing_cilk_simd_fn_info): Look for
      	"simd" attribute as well. Update error message.
      gcc/testsuite/
      	* c-c++-common/attr-simd.c: New test.
      	* c-c++-common/attr-simd-2.c: New test.
      	* c-c++-common/attr-simd-3.c: New test.
      
      From-SVN: r230422
      Kirill Yukhin committed
    • [AArch64] Fix gcc.target/aarch64/vclz.c · 56b08a58
      	* gcc.target/aarch64/vclz.c: Correctly place INHIB_OPTIMIZATION.
      
      From-SVN: r230421
      Alan Lawrence committed
    • Remove first_pass_instance · 7cf76184
      2015-11-16  Tom de Vries  <tom@codesourcery.com>
      
      	* passes.c (first_pass_instance): Remove variable.
      	(execute_todo): Remove setting of first_pass_instance.
      	* tree-pass.h (first_pass_instance): Remove declaration.
      
      From-SVN: r230420
      Tom de Vries committed
    • Remove first_pass_instance from pass_ccp · c06883ac
      2015-11-16  Tom de Vries  <tom@codesourcery.com>
      
      	* passes.def: Add arg to pass_ccp pass instantiation.
      	* tree-ssa-ccp.c (ccp_finalize): Add param nonzero_p.  Use nonzero_p
      	instead of first_pass_instance.
      	(do_ssa_ccp): Add and handle param nonzero_p.
      	(pass_ccp::pass_ccp): Initialize nonzero_p.
      	(pass_ccp::set_pass_param): New member function.  Set nonzero_p.
      	(pass_ccp::execute): Call do_ssa_ccp with extra arg.
      	(pass_ccp::nonzero_p): New private member.
      
      From-SVN: r230419
      Tom de Vries committed
    • Remove first_pass_instance from pass_object_sizes · 813ccd83
      2015-11-16  Tom de Vries  <tom@codesourcery.com>
      
      	* passes.def: Add arg to pass_object_sizes pass instantiation.
      	* tree-object-size.c (pass_object_sizes::pass_object_sizes): Initialize
      	insert_min_max_p.
      	(pass_object_sizes::set_pass_param): New member function.  Set
      	insert_min_max_p.
      	(pass_object_sizes::insert_min_max_p): New private member.
      	(pass_object_sizes::execute): Use insert_min_max_p instead of
      	first_pass_instance.
      
      From-SVN: r230418
      Tom de Vries committed
    • Remove first_pass_instance from pass_dominator · 5ce8d99a
      2015-11-16  Tom de Vries  <tom@codesourcery.com>
      
      	* passes.def: Add arg to pass_dominator pass instantiation.
      	* tree-pass.h (first_pass_instance): Remove pass_dominator-related bit
      	of comment.
      	* tree-ssa-dom.c (pass_dominator::pass_dominator): Initialize
      	may_peel_loop_headers_p.
      	(pass_dominator::set_pass_param): New member function.  Set
      	may_peel_loop_headers_p.
      	(pass_dominator::may_peel_loop_headers_p): New private member.
      	(pass_dominator::execute): Use may_peel_loop_headers_p instead of
      	first_pass_instance.
      
      From-SVN: r230417
      Tom de Vries committed
    • Remove first_pass_instance from pass_reassoc · 2162bfe1
      2015-11-16  Tom de Vries  <tom@codesourcery.com>
      
      	* passes.def: Add arg to pass_reassoc pass instantiation.
      	* tree-ssa-reassoc.c (reassoc_insert_powi_p): New static variable.
      	(acceptable_pow_call, reassociate_bb): Use reassoc_insert_powi_p instead
      	of first_pass_instance.
      	(execute_reassoc): Add and handle insert_powi_p parameter.
      	(pass_reassoc::insert_powi_p): New private member.
      	(pass_reassoc::pass_reassoc): Initialize insert_powi_p.
      	(pass_reassoc::set_pass_param): New member function.  Set insert_powi_p.
      	(pass_reassoc::execute): Call execute_reassoc with extra arg.
      
      From-SVN: r230416
      Tom de Vries committed
    • Remove first_pass_instance from pass_vrp · b0c77505
      2015-11-16  Tom de Vries  <tom@codesourcery.com>
      
      	* gdbhooks.py (class PassNames): Handle extra arg NEXT_PASS argument.
      	* gen-pass-instances.awk (handle_line): Same.
      	* pass_manager.h (class pass_manager): Define and undefine
      	NEXT_PASS_WITH_ARG.
      	* passes.c (opt_pass::set_pass_param): New function.
      	(pass_manager::pass_manager): Define and undefine NEXT_PASS_WITH_ARG.
      	* passes.def: Add extra arg to NEXT_PASS (pass_vrp).
      	* tree-pass.h (gimple_opt::set_pass_param): Declare.
      	* tree-vrp.c (vrp_finalize, execute_vrp): Add and handle
      	warn_array_bounds_p parameter.
      	(pass_vrp::pass_vrp): Initialize warn_array_bounds_p.
      	(pass_vrp::set_pass_param): New function.
      	(pass_vrp::execute): Add warn_array_bounds_p arg to execute_vrp call.
      	(pass_vrp::warn_array_bounds_p): New private member.
      
      From-SVN: r230415
      Tom de Vries committed
    • sparc.c (sparc_emit_probe_stack_range): Adjust. · 632b0921
      	* config/sparc/sparc.c (sparc_emit_probe_stack_range): Adjust.
      	(output_probe_stack_range): Rotate the loop and simplify.
      
      From-SVN: r230414
      Eric Botcazou committed
    • rs6000.c (rs6000_emit_probe_stack_rang): Adjust. · c0f39947
      	* config/rs6000/rs6000.c (rs6000_emit_probe_stack_rang): Adjust.
      	(output_probe_stack_range): Rotate the loop and simplify.
      
      From-SVN: r230413
      Eric Botcazou committed
    • i386.c (ix86_adjust_stack_and_probe): Adjust and use an lea instruction when possible. · 16c6f54f
      	* config/i386/i386.c (ix86_adjust_stack_and_probe): Adjust and use
      	an lea instruction when possible.
      	(output_adjust_stack_and_probe): Rotate the loop and simplify.
      	(ix86_emit_probe_stack_range): Adjust.
      	(output_probe_stack_range): Rotate the loop and simplify.
      
      From-SVN: r230412
      Eric Botcazou committed
    • arm_neon.h: Remove #ifndef check on __ARM_NEON. · ae5e2923
      2015-11-16  Christian Bruel  <christian.bruel@st.com>
      
      	* config/arm/arm_neon.h: Remove #ifndef check on __ARM_NEON.
      	Replace #ifdef __ARM_FEATURE_CRYPTO, __ARM_FEATURE_FMA, __ARM_FP
      	with appropriate pragma GCC target.
      
      2015-11-16  Christian Bruel  <christian.bruel@st.com>
      
      	* lib/target-supports.exp (check_effective_target_arm_neon_ok_nocache):
      	 Check __ARM_NEON__ instead of "arm_neon.h.
      	* gcc.target/arm/attr-neon3.c: New test.
      	* gcc.target/arm/attr-neon-fp16.c: Likewise
      
      From-SVN: r230411
      Christian Bruel committed
    • re PR target/65837 ([arm-linux-gnueabihf] lto1 target specific builtin not available) · b8c7c62b
      2015-11-16  Christian Bruel  <christian.bruel@st.com>
      
      	PR target/65837
      	* config/arm/arm-c.c (arm_cpu_builtins): Conditionally set and reset
      	__ARM_FEATURE_FMA and __ARM_NEON_FP, __ARM_FP.
      
      From-SVN: r230410
      Christian Bruel committed
    • [AArch64] Cortex-A57 Choose some new branch costs. · 67707f65
      gcc/
      
      	* config/aarch64/aarch64.c (cortexa57_branch_costs): New.
      	(cortexa57_tunings): Use it.
      
      From-SVN: r230409
      James Greenhalgh committed
    • re PR target/65837 ([arm-linux-gnueabihf] lto1 target specific builtin not available) · c9106282
      2015-11-16  Christian Bruel  <christian.bruel@st.com>
      
      	PR target/65837
      	* config/arm/arm-c.c (arm_cpu_builtins): Set or reset
      	__ARM_FEATURE_CRYPTO, __VFP_FP__, __ARM_NEON__
      	(arm_pragma_target_parse): Change check for arm_cpu_builtins.
      	undefine __ARM_FP.
      	* config/arm/arm.c (arm_can_inline_p): Check FPUs.
      	(arm_valid_target_attribute_rec): Handle -mfpu attribute target.
      	* doc/invoke.texi (-mfpu=): Mention attribute and pragma.
      	* doc/extend.texi (-mfpu=): Describe attribute.
      
      2015-11-16  Christian Bruel  <christian.bruel@st.com>
      
      	PR target/65837
      	gcc.target/arm/lto/pr65837_0.c
      	gcc.target/arm/attr-neon2.c
      	gcc.target/arm/attr-neon.c
      	gcc.target/arm/attr-neon-builtin-fail.c
      	gcc.target/arm/attr-crypto.c
      
      From-SVN: r230408
      Christian Bruel committed
    • coding nit · f39cdf66
      From-SVN: r230407
      Christian Bruel committed
    • re PR target/65837 ([arm-linux-gnueabihf] lto1 target specific builtin not available) · 00c02a70
      2015-11-16  Christian Bruel  <christian.bruel@st.com>
      
      	PR target/65837
      	* config/arm/arm-protos.h (arm_init_neon_builtins): Declare.
      	* config/arm/arm.c (arm_valid_target_attribute_tree): Call
      	arm_init_neon_builtins.
      	* config/arm/arm-builtins.c (arm_init_neon_builtins): Split into...
      	(arm_init_neon_builtins_internal)
      	(arm_init_crypto_builtins_internal):
      	Test and set neon_set_p, neon_crypto_set_p.
      	(neon_set_p, neon_crypto_set_p): New static booleans.
      
      From-SVN: r230406
      Christian Bruel committed
    • bb-slp-32.c: Adjust testcase. · da225f53
      2015-11-16  Richard Biener  <rguenther@suse.de>
      
      	* gcc.dg/vect/bb-slp-32.c: Adjust testcase.
      
      From-SVN: r230405
      Richard Biener committed
    • re PR target/65837 ([arm-linux-gnueabihf] lto1 target specific builtin not available) · 19708abc
      2015-11-16  Christian Bruel  <christian.bruel@st.com>
      
      	PR target/65837
      	* config/arm/arm.c (arm_fpu_desc): Remove.
      	(all_fpus): Make global.
      	(arm_option_override): Use FPU TARGET accessors.
      	(arm_declare_function_name): Likewise.
      	* config/arm/arm.h (TARGET_VFP, TARGET_VFPD32, TARGET_VFP5)
      	(TARGET_VFP_SINGLE, TARGET_VFP_DOUBLE, TARGET_NEON_FP16)
      	(TARGET_FP16, TARGET_FMA, TARGET_FPU_ARMV8, TARGET_CRYPTO)
      	(TARGET_NEON): Likewise.
      	(all_fpus): Declare extern.
      	(TARGET_FPU_NAME, TARGET_FPU_MODEL, TARGET_FPU_REV)
      	(TARGET_FPU_REGS, TARGET_FPU_FEATURES): Define all_fpus accessors.
      
      From-SVN: r230404
      Christian Bruel committed
    • PR 68366 - include emit-rtl.h in sdbout.c · c21f7c9d
      Some of the pa target macros rely on macros in emit-rtl.h and sdbout.c
      uses some of those macros, which means that sdbout.c needs to include
      emit-rtl.h.
      
      gcc/ChangeLog:
      
      2015-11-15  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	PR middle-end/68366
      	* sdbout.c: Include emit-rtl.h and function.h.
      
      From-SVN: r230402
      Trevor Saunders committed
    • Daily bump. · 1f25fa05
      From-SVN: r230401
      GCC Administrator committed
  2. 15 Nov, 2015 10 commits
    • on_exit.c: New file. · d9adb476
              * config/rs6000/on_exit.c: New file.
              * config/rs6000/t-aix-cxa (LIB2ADDEH): Build on_exit.c.
              * config/rs6000/libgcc-aix-cxa.ver (on_exit): Add symbol to exports.
      
      From-SVN: r230398
      David Edelsohn committed
    • freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586. · 01a0467e
      	* config/i386/freebsd.h (SUBTARGET32_DEFAULT_CPU): Change to i586.
      	Remove support for FreeBSD 5 and earlier.
      
      From-SVN: r230397
      Gerald Pfeifer committed
    • re PR fortran/50221 (Allocatable string length fails with array assignment) · 78ab5260
      2015-11-15  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/50221
      	PR fortran/68216
      	PR fortran/63932
      	PR fortran/66408
      	* trans_array.c (gfc_conv_scalarized_array_ref): Pass the
      	symbol decl for deferred character length array references.
      	* trans-stmt.c (gfc_trans_allocate): Keep the string lengths
      	to update deferred length character string lengths.
      	* trans-types.c (gfc_get_dtype_rank_type); Use the string
      	length of deferred character types for the dtype size.
      	* trans.c (gfc_build_array_ref): For references to deferred
      	character arrays, use the domain max value, if it is a variable
      	to set the 'span' and use pointer arithmetic for acces to the
      	element.
      	(trans_code): Set gfc_current_locus for diagnostic purposes.
      
      	PR fortran/67674
      	* trans-expr.c (gfc_conv_procedure_call): Do not fix deferred
      	string lengths of components.
      
      	PR fortran/49954
      	* resolve.c (deferred_op_assign): New function.
      	(gfc_resolve_code): Call it.
      	* trans-array.c (concat_str_length): New function.
      	(gfc_alloc_allocatable_for_assignment): Jump directly to alloc/
      	realloc blocks for deferred character length arrays because the
      	string length might change, even if the shape is the same. Call
      	concat_str_length to obtain the string length for concatenation
      	since it is needed to compute the lhs string length.
      	Set the descriptor dtype appropriately for the new string
      	length.
      	* trans-expr.c (gfc_trans_assignment_1): Use the rse string
      	length for all characters, other than deferred types. For
      	concatenation operators, push the rse.pre block to the inner
      	most loop so that the temporary pointer and the assignments
      	are properly placed.
      
      2015-11-15  Paul Thomas  <pault@gcc.gnu.org>
      
      	PR fortran/50221
      	* gfortran.dg/deferred_character_1.f90: New test.
      	* gfortran.dg/deferred_character_4.f90: New test for comment
      	#4 of the PR.
      
      	PR fortran/68216
      	* gfortran.dg/deferred_character_2.f90: New test.
      
      	PR fortran/67674
      	* gfortran.dg/deferred_character_3.f90: New test.
      
      	PR fortran/63932
      	* gfortran.dg/deferred_character_5.f90: New test.
      
      	PR fortran/66408
      	* gfortran.dg/deferred_character_6.f90: New test.
      
      	PR fortran/49954
      	* gfortran.dg/deferred_character_7.f90: New test.
      
      From-SVN: r230396
      Paul Thomas committed
    • PR libstdc++/68353 fix _GLIBCXX_USE_C99_WCHAR test · 356510ac
      	PR libstdc++/68353
      	* include/bits/basic_string.h: Test value of _GLIBCXX_USE_C99_WCHAR
      	not whether it is defined.
      	* include/ext/vstring.h: Likewise.
      
      From-SVN: r230395
      Jonathan Wakely committed
    • always define ENABLE_OFFLOADING · 1d899da2
      gcc/cp/ChangeLog:
      
      2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* parser.c (cp_parser_omp_declare_target): Adjust.
      
      gcc/ChangeLog:
      
      2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* configure: Regenerate.
      	* configure.ac: Always define ENABLE_OFFLOADING.
      	* cgraph.c (cgraph_node::create): Adjust.
      	* gcc.c (process_command): Likewise.
      	* omp-low.c (create_omp_child_function): Likewise.
      	(expand_omp_target): Likewise.
      	* varpool.c (varpool_node::get_create): Likewise.
      
      gcc/c/ChangeLog:
      
      2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* c-parser.c (c_parser_omp_declare_target): Adjust.
      
      From-SVN: r230393
      Trevor Saunders committed
    • always define EH_RETURN_HANDLER_RTX · dd4fb609
      gcc/ChangeLog:
      
      2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* defaults.h (EH_RETURN_HANDLER_RTX): New default definition.
      	* df-scan.c (df_get_exit_block_use_set): Adjust.
      	* except.c (expand_eh_return): Likewise.
      
      From-SVN: r230392
      Trevor Saunders committed
    • always define TARGET_PECOFF · ab7b5673
      gcc/ChangeLog:
      
      2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* config/i386/i386.h (TARGET_PECOFF): Remove define.
      	* defaults.h (TARGET_PECOFF): New default definition.
      	* varasm.c (handle_vtv_comdat_section): Adjust.
      
      gcc/cp/ChangeLog:
      
      2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* vtable-class-hierarchy.c (vtv_generate_init_routine): Adjust.
      
      From-SVN: r230391
      Trevor Saunders committed
    • remove conditional compilation of sdb debug info · 53943148
      gcc/ChangeLog:
      
      2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* defaults.h: New definition of SDB_DEBUGGING_INFO.
      	* doc/tm.texi: Regenerate.
      	* doc/tm.texi.in: Adjust.
      	* final.c (rest_of_clean_state): Remove check if
      	SDB_DEBUGGING_INFO is defined.
      	* function.c (number_blocks): Likewise.
      	* output.h: Likewise.
      	* sdbout.c: Likewise.
      	* toplev.c (process_options): Likewise.
      
      From-SVN: r230390
      Trevor Saunders committed
    • remove EXTENDED_SDB_BASIC_TYPES · d36402d9
      The last target using this was i960, which was removed many years ago,
      so there's no reason to keep it.
      
      gcc/ChangeLog:
      
      2015-11-14  Trevor Saunders  <tbsaunde+gcc@tbsaunde.org>
      
      	* gsyms.h (enum sdb_type): Remove code for
      	EXTENDED_SDB_BASIC_TYPES.
      	(enum sdb_masks): Likewise.
      	* sdbout.c (plain_type_1): Likewise.
      	* system.h: Poison EXTENDED_SDB_BASIC_TYPES macro.
      
      From-SVN: r230389
      Trevor Saunders committed
    • Daily bump. · 6aab8e4f
      From-SVN: r230388
      GCC Administrator committed