gcc.git
16 years agoDaily bump.
GCC Administrator [Mon, 26 May 2008 00:17:31 +0000 (00:17 +0000)]
Daily bump.

From-SVN: r135888

16 years agotree-nested.c (convert_tramp_reference): Do not build a trampoline if we don't want...
Eric Botcazou [Sun, 25 May 2008 22:42:49 +0000 (22:42 +0000)]
tree-nested.c (convert_tramp_reference): Do not build a trampoline if we don't want one.

 * tree-nested.c (convert_tramp_reference) <ADDR_EXPR>: Do not
build a trampoline if we don't want one.
* varasm.c (initializer_constant_valid_p) <ADDR_EXPR>: Do not
return zero for nested functions if we don't want a trampoline.
ada/
* trans.c (Attribute_to_gnu) <Code_Address>: Set TREE_NO_TRAMPOLINE
instead of TREE_STATIC on the ADDR_EXPR.

From-SVN: r135884

16 years agoinvoke.texi: Added f77, f77-cpp-input to list of file types.
Daniel Franke [Sun, 25 May 2008 22:41:01 +0000 (18:41 -0400)]
invoke.texi: Added f77, f77-cpp-input to list of file types.

2008-05-26  Daniel Franke  <franke.daniel@gmail.com>

        * doc/invoke.texi: Added f77, f77-cpp-input to list of file types.

From-SVN: r135883

16 years agore PR fortran/18428 (No preprocessing option -cpp for gfortran)
Daniel Franke [Sun, 25 May 2008 22:37:41 +0000 (18:37 -0400)]
re PR fortran/18428 (No preprocessing option -cpp for gfortran)

gcc:
2008-05-26  Daniel Franke  <franke.daniel@gmail.com>

PR fortran/18428
* c.opt: Removed undocumented option '-lang-fortran'.
* c-common.h: Removed global variable 'lang_fortran'.
* c-opts.c (c_common_handle_option): Removed code to handle
option '-lang-fortran'. Updated includes.
* c-cppbuiltin.c (c_cpp_builtins): Removed conditional
definition of '__GFORTRAN__'.
(define__GNUC__): Reimplemented to use BASEVER and
cpp_define_formatted.
(builtin_define_with_value_n): Removed.
* c-incpath.h: Renamed to ...
* incpath.h: ... this.
* c-incpath.c: Renamed to ...
* incpath.c: ... this. Updated includes.
* fix-header.c: Updated includes.
* Makefile.in: Replaced c-incpath.[ch] by incpath.[ch].
(c-cppbuiltin.o): Added dependency on and definition of BASEVER.
(OBJ-archive): Added cppdefault.o, incpath.o and prefix.o.

gcc/cp:
2008-05-26  Daniel Franke  <franke.daniel@gmail.com>

* Makefile.in: Adjusted dependencies on c-incpath.o.

gcc/fortran:
2008-05-26  Daniel Franke  <franke.daniel@gmail.com>

PR fortran/18428
* lang.opt (A, C, CC, D, E, H, P, U, cpp, d, fworking-directory,
imultilib, iprefix, iquote, isysroot, isystem, nocpp, nostdinc,
o, undef, v): New options.
* options.c (gfc_init_options): Also initialize preprocessor
options.
(gfc_post_options): Also handle post-initialization of preprocessor
options.
(gfc_handle_option): Check if option is a preprocessor option.
If yes, let gfc_cpp_handle_option() handle the option.
* lang-specs.h: Reorganized to handle new options.
* scanner.c (gfc_new_file): Read temporary file instead of
input source if preprocessing is enabled.
* f95-lang.c (gfc_init): Initialize preprocessor.
(gfc_finish): Clean up preprocessor.
* cpp.c: New.
* cpp.h: New.
* Make-lang.in: Added new objects and dependencies.
* gfortran.texi: Updated section "Preprocessing and
conditional compilation".
* invoke.texi: Added new section "Preprocessing Options",
listed and documented the preprocessing options handled by gfortran.

From-SVN: r135882

16 years agotree.h: Update the table of flags used on tree nodes.
Eric Botcazou [Sun, 25 May 2008 22:36:11 +0000 (22:36 +0000)]
tree.h: Update the table of flags used on tree nodes.

* tree.h: Update the table of flags used on tree nodes.
(TREE_NO_TRAMPOLINE): New accessor for static_flag.
(SAVE_EXPR_RESOLVED_P): Use automatically-built access check.
(FORCED_LABEL): Add access check.
(CALL_EXPR_RETURN_SLOT_OPT): Likewise.
(ASM_INPUT_P): Likewise.
(ASM_VOLATILE_P): Likewise.
(EH_FILTER_MUST_NOT_THROW): Access static_flag directly.
(OMP_SECTION_LAST): Access private_flag directly.
(OMP_RETURN_NOWAIT): Likewise.
(OMP_PARALLEL_COMBINED): Likewise.
(OMP_CLAUSE_PRIVATE_DEBUG): Access public_flag directly.
(OMP_CLAUSE_LASTPRIVATE_FIRSTPRIVATE): Likewise.
* tree-ssa-propagate.c (STMT_IN_SSA_EDGE_WORKLIST): Access
deprecated_flag directly.

From-SVN: r135881

16 years agocomplex (complex<>::real(_Tp), [...]): Add per DR 387.
Paolo Carlini [Sun, 25 May 2008 18:59:19 +0000 (18:59 +0000)]
complex (complex<>::real(_Tp), [...]): Add per DR 387.

2008-05-25  Paolo Carlini  <paolo.carlini@oracle.com>

* include/std/complex (complex<>::real(_Tp), complex<>::imag(_Tp),
complex<float>::real(float), complex<float>::imag(float),
complex<double>::real(double), complex<double>::imag(double),
complex<long double>::real(long double),
complex<long double>::imag(long double)): Add per DR 387.
(complex<>::real(), complex<>::imag(), complex<float>::real(),
complex<float>::imag(), complex<double>::real(),
complex<double>::imag(), complex<long double>::real(),
complex<long double>::imag(long double)): Adjust in C++0x mode.
(real(complex<>&), imag(complex<>&), real(const complex<>&),
imag(const complex<>&)): Likewise.
* testsuite/26_numerics/complex/dr387.cc: New.
* doc/xml/manual/intro.xml: Add an entry for DR 387.

From-SVN: r135878

16 years agore PR fortran/32600 ([ISO Bind C] C_F_POINTER w/o SHAPE should not be a library function)
Tobias Burnus [Sun, 25 May 2008 17:52:03 +0000 (19:52 +0200)]
re PR fortran/32600 ([ISO Bind C] C_F_POINTER w/o SHAPE should not be a library function)

2008-05-25  Tobias Burnus  <burnus@net-b.de>

        PR fortran/32600
        * trans-expr.c (gfc_conv_function_call): Remove library
        call for c_f_pointer with scalar Fortran pointers and for
        c_f_procpointer.

2008-05-25  Tobias Burnus  <burnus@net-b.de>

        PR fortran/32600
        * intrinsics/iso_c_binding.c (c_f_procpointer): Remove.
        * intrinsics/iso_c_binding.h (c_f_procpointer): Remove.
        * gfortran.map (c_f_procpointer): Remove.

2008-05-25  Tobias Burnus  <burnus@net-b.de>

        PR fortran/32600
        * gfortran.dg/c_f_pointer_tests_3.f90: New.

From-SVN: r135877

16 years agore PR middle-end/17526 (libcpp is miscompiled with -fno-pcc-struct-return -O2)
Richard Guenther [Sun, 25 May 2008 17:16:38 +0000 (17:16 +0000)]
re PR middle-end/17526 (libcpp is miscompiled with -fno-pcc-struct-return -O2)

2008-05-25  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/17526
* gcc.dg/torture/pr17526.c: New testcase.

From-SVN: r135876

16 years agocomplex: Trivial stylistic changes...
Paolo Carlini [Sun, 25 May 2008 16:55:23 +0000 (16:55 +0000)]
complex: Trivial stylistic changes...

2008-05-25  Paolo Carlini  <paolo.carlini@oracle.com>

* include/std/complex: Trivial stylistic changes, define inline
members inline, consistently with the rest of the library.
(pow(const _Tp&, const complex<>&)): Minor tweak.

From-SVN: r135872

16 years agofinal.c (frame_pointer_needed): Removed.
H.J. Lu [Sun, 25 May 2008 16:24:43 +0000 (16:24 +0000)]
final.c (frame_pointer_needed): Removed.

2008-05-25  H.J. Lu  <hongjiu.lu@intel.com>

* final.c (frame_pointer_needed): Removed.
* flags.h (frame_pointer_needed): Likewise.

* function.h (rtl_data): Add frame_pointer_needed.
(frame_pointer_needed): New.

From-SVN: r135870

16 years agoconfig.gcc (sh2[lbe]*-*-linux*): Allow target.
Arthur Loiret [Sun, 25 May 2008 12:30:30 +0000 (14:30 +0200)]
config.gcc (sh2[lbe]*-*-linux*): Allow target.

* config.gcc (sh2[lbe]*-*-linux*): Allow target.
* config.host (sh2[lbe]*-*-linux*): Allow target.

From-SVN: r135861

16 years agogcse.c (hash_scan_set): Do not pick up a REG_EQUAL value if SRC is a REG.
Steven Bosscher [Sun, 25 May 2008 11:58:18 +0000 (11:58 +0000)]
gcse.c (hash_scan_set): Do not pick up a REG_EQUAL value if SRC is a REG.

2008-05-25  Steven Bosscher  <stevenb.gcc@gmail.com>

* gcse.c (hash_scan_set): Do not pick up a REG_EQUAL value if
SRC is a REG.

From-SVN: r135860

16 years agoDelete get_inner_array_type. Use strip_array_types instead.
Alan Modra [Sun, 25 May 2008 03:58:15 +0000 (03:58 +0000)]
Delete get_inner_array_type.  Use strip_array_types instead.

From-SVN: r135858

16 years agoDaily bump.
GCC Administrator [Sun, 25 May 2008 00:17:55 +0000 (00:17 +0000)]
Daily bump.

From-SVN: r135856

16 years agoinclhack.def (solaris_math_4): Use GCC's __builtin_fpclassify.
Kaveh R. Ghazi [Sat, 24 May 2008 20:52:00 +0000 (20:52 +0000)]
inclhack.def (solaris_math_4): Use GCC's __builtin_fpclassify.

* inclhack.def (solaris_math_4): Use GCC's __builtin_fpclassify.
* tests/base/iso/math_c99.h: Update.
* fixincl.x: Regenerate.

From-SVN: r135852

16 years agoi386.md (*sse_prologue_save_insn): Set length attribute to 34.
H.J. Lu [Sat, 24 May 2008 17:06:43 +0000 (17:06 +0000)]
i386.md (*sse_prologue_save_insn): Set length attribute to 34.

2008-05-24  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/i386.md (*sse_prologue_save_insn): Set length
attribute to 34.

From-SVN: r135851

16 years ago* function.c: Include target hook for nonlocal_goto frame value.
Andy Hutchinson [Sat, 24 May 2008 17:00:47 +0000 (17:00 +0000)]
* function.c: Include target hook for nonlocal_goto frame value.

From-SVN: r135850

16 years agoatomic.cc (atomic_flag_test_and_set_explicit, [...]): Suppress unused parameter warnings.
Paolo Carlini [Sat, 24 May 2008 10:47:14 +0000 (10:47 +0000)]
atomic.cc (atomic_flag_test_and_set_explicit, [...]): Suppress unused parameter warnings.

2008-05-24  Paolo Carlini  <paolo.carlini@oracle.com>

* src/atomic.cc (atomic_flag_test_and_set_explicit,
atomic_flag_clear_explicit): Suppress unused parameter warnings.

From-SVN: r135848

16 years agotrans.c (gnat_to_gnu): Do not set source location info on NOP_EXPRs.
Eric Botcazou [Sat, 24 May 2008 09:49:55 +0000 (09:49 +0000)]
trans.c (gnat_to_gnu): Do not set source location info on NOP_EXPRs.

        * trans.c (gnat_to_gnu): Do not set source location info on NOP_EXPRs.
        (Sloc_to_locus): Do not overwrite known GCC locations when translating
        GNAT standard locations.

From-SVN: r135847

16 years agotree-dfa.c (refs_may_alias_p): Re-instantiate case that a scalar variable can be...
Richard Guenther [Sat, 24 May 2008 09:27:47 +0000 (09:27 +0000)]
tree-dfa.c (refs_may_alias_p): Re-instantiate case that a scalar variable can be only accessed through a...

2008-05-24  Richard Guenther  <rguenther@suse.de>

* tree-dfa.c (refs_may_alias_p): Re-instantiate case that
a scalar variable can be only accessed through a pointer
or a union.

From-SVN: r135846

16 years agobuiltins.c (fold_builtin_fpclassify): Fix spelling of FP_INFINITE.
Kaveh R. Ghazi [Sat, 24 May 2008 05:56:00 +0000 (05:56 +0000)]
builtins.c (fold_builtin_fpclassify): Fix spelling of FP_INFINITE.

* builtins.c (fold_builtin_fpclassify): Fix spelling of FP_INFINITE.
* doc/extend.texi: Likewise.

testsuite:
* gcc.dg/tg-tests.h: Fix spelling of FP_INFINITE.

From-SVN: r135844

16 years ago* config/m32c/jump.md (untyped_call): Add.
DJ Delorie [Sat, 24 May 2008 00:51:18 +0000 (20:51 -0400)]
* config/m32c/jump.md (untyped_call): Add.

From-SVN: r135843

16 years agom32c.c (m32c_return_addr_rtx): Change pointer type for A24 to PSImode.
DJ Delorie [Sat, 24 May 2008 00:46:59 +0000 (20:46 -0400)]
m32c.c (m32c_return_addr_rtx): Change pointer type for A24 to PSImode.

* config/m32c/m32c.c (m32c_return_addr_rtx): Change pointer type
for A24 to PSImode.
(m32c_address_cost): Detail costs for indirect offsets.

From-SVN: r135842

16 years agoprofile1.C: Use dg-require-profiling.
Sandra Loosemore [Sat, 24 May 2008 00:43:50 +0000 (20:43 -0400)]
profile1.C: Use dg-require-profiling.

2008-05-23  Sandra Loosemore  <sandra@codesourcery.com>
    Daniel Jacobowitz  <dan@codesourcery.com>

gcc/testsuite/
* g++.dg/other/profile1.C: Use dg-require-profiling.

Co-Authored-By: Daniel Jacobowitz <dan@codesourcery.com>
From-SVN: r135841

16 years agore PR testsuite/22523 (template/inline1.C does not test correctly on all targerts)
Hans-Peter Nilsson [Sat, 24 May 2008 00:37:01 +0000 (00:37 +0000)]
re PR testsuite/22523 (template/inline1.C does not test correctly on all targerts)

PR testsuite/22523
* g++.dg/template/inline1.C: For the not-defined symbol, use the
pattern from g++.dg/template/qualttp17.C.

From-SVN: r135840

16 years agoDaily bump.
GCC Administrator [Sat, 24 May 2008 00:17:23 +0000 (00:17 +0000)]
Daily bump.

From-SVN: r135838

16 years agotuple: Replace int -> size_t throughout per DR 775.
Paolo Carlini [Fri, 23 May 2008 23:08:41 +0000 (23:08 +0000)]
tuple: Replace int -> size_t throughout per DR 775.

2008-05-23  Paolo Carlini  <paolo.carlini@oracle.com>

* include/std/tuple: Replace int -> size_t throughout per DR 775.
* include/tr1_impl/array: Likewise.
* include/tr1_impl/utility: Likewise.
* doc/xml/manual/intro.xml: Add an entry for DR 775.

From-SVN: r135834

16 years agosee.c (see_get_extension_data): Don't use SUBREG_REG to test if a node is a SUBREG.
Rafael Avila de Espindola [Fri, 23 May 2008 22:09:46 +0000 (22:09 +0000)]
see.c (see_get_extension_data): Don't use SUBREG_REG to test if a node is a SUBREG.

2008-05-23  Rafael Espindola  <espindola@google.com>

* see.c (see_get_extension_data): Don't use SUBREG_REG to test
if a node is a SUBREG.
(see_analyze_one_def): Don't use SUBREG_REG to test if a node
is a SUBREG.

2008-05-23  Rafael Espindola  <espindola@google.com>

* gcc/testsuite/gcc.c-torture/compile/20080522-1.c: Move to gcc.dg.
* gcc/testsuite/gcc.dg/20080522-1.c: Moved from gcc.c-torture.

From-SVN: r135833

16 years agoextend.texi: Clarify use of __attribute__((naked)).
Paul Brook [Fri, 23 May 2008 20:36:57 +0000 (20:36 +0000)]
extend.texi: Clarify use of __attribute__((naked)).

gcc/

2008-05-23  Paul Brook  <paul@codesourcery.com>
    Carlos O'Donell  <carlos@codesourcery.com>

* doc/extend.texi: Clarify use of __attribute__((naked)).
* doc/tm.texi: Document TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS.
* target.h (gcc_target): Add allocate_stack_slots_for_args.
* function.c (use_register_for_decl): Use
targetm.calls.allocate_stack_slots_for_args.
* target-def.h (TARGET_CALLS): Add
TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS.
* config/arm/arm.c (arm_allocate_stack_slots_for_args):
New function.
(TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS): Define.

gcc/testsuite/

2008-05-23  Paul Brook  <paul@codesourcery.com>
    Carlos O'Donell  <carlos@codesourcery.com>

* gcc.target/arm/naked-1.c: New test.
* gcc.target/arm/naked-2.c: New test.

Co-Authored-By: Carlos O'Donell <carlos@codesourcery.com>
From-SVN: r135831

16 years agoFix nits
Eric Botcazou [Fri, 23 May 2008 16:48:39 +0000 (16:48 +0000)]
Fix nits

From-SVN: r135821

16 years agoexpr.c (highest_pow2_factor): New case.
Eric Botcazou [Fri, 23 May 2008 16:38:27 +0000 (16:38 +0000)]
expr.c (highest_pow2_factor): New case.

* expr.c (highest_pow2_factor) <BIT_AND_EXPR>: New case.

From-SVN: r135820

16 years agogigi.h (mark_visited): Declare.
Eric Botcazou [Fri, 23 May 2008 16:13:49 +0000 (16:13 +0000)]
gigi.h (mark_visited): Declare.

* gigi.h (mark_visited): Declare.
* decl.c (gnat_to_gnu_entity): Use mark_visited instead of marking
only the topmost node of expressions.
(elaborate_expression_1): Look deeper for read-only variable.
* trans.c (add_decl_expr): Use mark_visited instead of marking by hand.
(mark_visited): Move logic to mark_visited_r.  Invoke walk_tree.
(mark_visited_r): New function.

From-SVN: r135819

16 years agore PR fortran/36314 (gfortran.dg/eoshift_large_1.f90 doesn't work)
Tobias Burnus [Fri, 23 May 2008 15:06:26 +0000 (17:06 +0200)]
re PR fortran/36314 (gfortran.dg/eoshift_large_1.f90 doesn't work)

2008-05-23  Tobias Burnus  <burnus@net-b.de>

       PR fortran/36314
       * gfortran.dg/eoshift_large_1.f90: Replace tabs by spaces.

From-SVN: r135817

16 years agodarwin-ldouble.c (fmsub): Eliminate the full PACK/UNPACK between FP_SUB_Q and FD_TRUN...
Steven Munroe [Fri, 23 May 2008 14:36:54 +0000 (14:36 +0000)]
darwin-ldouble.c (fmsub): Eliminate the full PACK/UNPACK between FP_SUB_Q and FD_TRUNC so that the result...

* config/rs6000/darwin-ldouble.c (fmsub): Eliminate the full
PACK/UNPACK between FP_SUB_Q and FD_TRUNC so that the result
is only rounded once.

From-SVN: r135815

16 years ago* gnat.dg/addr_slice.adb: New test.
Arnaud Charlet [Fri, 23 May 2008 14:35:05 +0000 (14:35 +0000)]
* gnat.dg/addr_slice.adb: New test.

From-SVN: r135814

16 years agoResync
Arnaud Charlet [Fri, 23 May 2008 14:34:02 +0000 (16:34 +0200)]
Resync

From-SVN: r135813

16 years agognat_ugn.texi (Calling Conventions): Document that the Intrinsic convention also...
Olivier Hainque [Fri, 23 May 2008 14:33:46 +0000 (16:33 +0200)]
gnat_ugn.texi (Calling Conventions): Document that the Intrinsic convention also allows access to named compiler...

2008-05-23  Olivier Hainque  <hainque@adacore.com>

* gnat_ugn.texi (Calling Conventions): Document that the Intrinsic
convention also allows access to named compiler built-in subprograms
such as the GCC __builtin family.

From-SVN: r135812

16 years agosem_attr.adb (Resolve_Attribute, [...]): If the prefix is a slice...
Ed Schonberg [Fri, 23 May 2008 14:33:37 +0000 (16:33 +0200)]
sem_attr.adb (Resolve_Attribute, [...]): If the prefix is a slice...

2008-05-23  Ed Schonberg  <schonberg@adacore.com>

* sem_attr.adb (Resolve_Attribute, case 'address): If the prefix is a
slice, convert it to an indexed component, which is equivalent, more
efficient, and usable even if the slice itself is not addressable.

From-SVN: r135811

16 years agoexp_dist.adb: Minor reformatting
Robert Dewar [Fri, 23 May 2008 14:33:24 +0000 (16:33 +0200)]
exp_dist.adb: Minor reformatting

2008-05-23  Robert Dewar  <dewar@adacore.com>

* exp_dist.adb: Minor reformatting

From-SVN: r135810

16 years agosnames.adb: New standard name Excluded_Source_List_File
Vincent Celier [Fri, 23 May 2008 14:33:14 +0000 (16:33 +0200)]
snames.adb: New standard name Excluded_Source_List_File

2008-05-23  Vincent Celier  <celier@adacore.com>

* snames.adb:
New standard name Excluded_Source_List_File

* snames.ads:
New standard name Excluded_Source_List_File

* prj-attr.adb:
New project level attribute Excluded_Source_List_File

* prj-nmsc.adb:
(Find_Excluded_Sources): New parameter Project.
Get excluded sources from
file indicated by attribute Excluded_Source_List_File, when present and
neither Excluded_Source_Files nor Locally_Removed_Files are declared.

From-SVN: r135809

16 years agojcf-parse.c (give_name_to_class): Call find_sourcefile to find full pathname of sourc...
Andrew Haley [Fri, 23 May 2008 13:52:03 +0000 (13:52 +0000)]
jcf-parse.c (give_name_to_class): Call find_sourcefile to find full pathname of source file.

2008-05-23  Andrew Haley  <aph@redhat.com>

        * jcf-parse.c (give_name_to_class): Call find_sourcefile to find full
        pathname of source file.

From-SVN: r135808

16 years agoResync
Arnaud Charlet [Fri, 23 May 2008 13:29:14 +0000 (15:29 +0200)]
Resync

From-SVN: r135806

16 years ago2008-05-23 Thomas Quinot <quinot@adacore.com>
Thomas Quinot [Fri, 23 May 2008 13:29:02 +0000 (15:29 +0200)]
2008-05-23  Thomas Quinot  <quinot@adacore.com>

* s-os_lib.adb:
(copy_File): Do not open destination file if source file is unreadable.

From-SVN: r135805

16 years agognatlink.adb (Process_Args): Do not disable scanning of ALI file for back end switche...
Vincent Celier [Fri, 23 May 2008 13:28:41 +0000 (15:28 +0200)]
gnatlink.adb (Process_Args): Do not disable scanning of ALI file for back end switches when...

2008-05-23  Vincent Celier  <celier@adacore.com>

* gnatlink.adb (Process_Args): Do not disable scanning of ALI file for
back end switches when executable specified with --GCC= is same as
default, even if there are additional options.

* gnat_ugn.texi:
Document when the back end switches from the ALI file are taken into
account when gnatlink is invoked with --GCC=

From-SVN: r135804

16 years agoprj-nmsc.adb (Check_Naming_Schemes): Check a file for spec, body and sep.
Vincent Celier [Fri, 23 May 2008 13:28:03 +0000 (15:28 +0200)]
prj-nmsc.adb (Check_Naming_Schemes): Check a file for spec, body and sep.

2008-05-23  Vincent Celier  <celier@adacore.com>

* prj-nmsc.adb (Check_Naming_Schemes): Check a file for spec, body and
sep. If there are several possibilities, choose the one with the
longer prefix.

From-SVN: r135803

16 years agore PR c++/36237 (internal compiler error: in lower_stmt, at gimple-low.c:282 erase...
Jakub Jelinek [Fri, 23 May 2008 13:21:47 +0000 (15:21 +0200)]
re PR c++/36237 (internal compiler error: in lower_stmt, at gimple-low.c:282 erase 'private(localTodoStack)' it compiles successfully.)

PR c++/36237
* cp-gimplify.c (cxx_omp_clause_apply_fn): Call
fold_build_cleanup_point_expr on build_call_a results.

* g++.dg/gomp/pr36237.C: New test.

From-SVN: r135802

16 years agore PR libgcj/35020 (Class.getSimpleName() differs from Sun Java)
Andrew Haley [Fri, 23 May 2008 13:04:18 +0000 (13:04 +0000)]
re PR libgcj/35020 (Class.getSimpleName() differs from Sun Java)

2008-05-22  Andrew Haley  <aph@redhat.com>

PR libgcj/35020
* java/lang/Class.java (getSimpleName): Replace incorrect use of
String.lastIndexOf(String, int) with String.substring.
* testsuite/libjava.lang/PR35020.java: New file.
* testsuite/libjava.lang/PR35020.out: New file.

From-SVN: r135801

16 years agotree-ssa-operands.c (mark_difference_for_renaming): Use bitmap_xor.
Richard Guenther [Fri, 23 May 2008 12:08:36 +0000 (12:08 +0000)]
tree-ssa-operands.c (mark_difference_for_renaming): Use bitmap_xor.

2008-05-23  Richard Guenther  <rguenther@suse.de>

* tree-ssa-operands.c (mark_difference_for_renaming): Use
bitmap_xor.

From-SVN: r135799

16 years agore PR c++/36308 (OpenMP privatized vars don't get dtors called if they are virtual)
Jakub Jelinek [Fri, 23 May 2008 11:52:44 +0000 (13:52 +0200)]
re PR c++/36308 (OpenMP privatized vars don't get dtors called if they are virtual)

PR c++/36308
* semantics.c (omp_clause_info_fndecl): New function.
(finish_omp_clauses): Use it.

* testsuite/libgomp.c++/ctor-11.C: New test.
* testsuite/libgomp.c++/ctor-12.C: New test.

From-SVN: r135798

16 years agoutils.c (handle_type_generic_attribute): Adjust to accept fixed arguments before...
Eric Botcazou [Fri, 23 May 2008 10:36:37 +0000 (10:36 +0000)]
utils.c (handle_type_generic_attribute): Adjust to accept fixed arguments before an elipsis.

* utils.c (handle_type_generic_attribute): Adjust to accept
fixed arguments before an elipsis.

From-SVN: r135797

16 years agointro.xml: Adjust links to ISO documents.
Paolo Carlini [Fri, 23 May 2008 10:35:39 +0000 (10:35 +0000)]
intro.xml: Adjust links to ISO documents.

2008-05-23  Paolo Carlini  <paolo.carlini@oracle.com>

* doc/xml/manual/intro.xml: Adjust links to ISO documents.

From-SVN: r135796

16 years agocmath (fpclassify): Use __builtin_fpclassify.
Paolo Carlini [Fri, 23 May 2008 10:03:31 +0000 (10:03 +0000)]
cmath (fpclassify): Use __builtin_fpclassify.

2008-05-23  Paolo Carlini  <paolo.carlini@oracle.com>

* include/c_std/cmath (fpclassify): Use __builtin_fpclassify.
* include/c_global/cmath (fpclassify): Likewise.

From-SVN: r135795

16 years agore PR target/36079 (cld instruction is not emitted anymore.)
Uros Bizjak [Fri, 23 May 2008 07:53:16 +0000 (09:53 +0200)]
re PR target/36079 (cld instruction is not emitted anymore.)

PR target/36079
* configure.ac: Handle --enable-cld.
* configure: Regenerated.
* config.gcc: Add USE_IX86_CLD to tm_defines for x86 targets.
* config/i386/i386.h (struct machine_function): Add needs_cld field.
(ix86_current_function_needs_cld): New define.
* config/i386/i386.md (UNSPEC_CLD): New unspec volatile constant.
(cld): New isns pattern.
(strmov_singleop, rep_mov, strset_singleop, rep_stos, cmpstrnqi_nz_1,
cmpstrnqi_1, strlenqi_1): Set ix86_current_function_needs_cld flag.
* config/i386/i386.opt (mcld): New option.
* config/i386/i386.c (ix86_expand_prologue): Emit cld insn if
TARGET_CLD and ix86_current_function_needs_cld.
(override_options): Use -mcld by default for 32-bit code if
USE_IX86_CLD.

* doc/install.texi (Options specification): Document --enable-cld.
* doc/invoke.texi (Machine Dependent Options)
        [i386 and x86-64 Options]: Add -mcld option.
        (Intel 386 and AMD x86-64 Options): Document -mcld option.

From-SVN: r135792

16 years agoi386.c (return_in_memory_32): Add ATTRIBUTE_UNUSED.
Kai Tietz [Fri, 23 May 2008 06:04:01 +0000 (08:04 +0200)]
i386.c (return_in_memory_32): Add ATTRIBUTE_UNUSED.

2008-05-23  Kai Tietz  <kai.tietz@onevison.com>
        * config/i386/i386.c (return_in_memory_32): Add ATTRIBUTE_UNUSED.
        (return_in_memory_64): Likewise.
        (return_in_memory_ms_64): Likewise.

From-SVN: r135790

16 years agobuiltin-types.def (BT_FN_INT_INT_INT_INT_INT_INT_VAR): New.
Kaveh R. Ghazi [Fri, 23 May 2008 04:47:12 +0000 (04:47 +0000)]
builtin-types.def (BT_FN_INT_INT_INT_INT_INT_INT_VAR): New.

* builtin-types.def (BT_FN_INT_INT_INT_INT_INT_INT_VAR): New.
* builtins.c (fold_builtin_fpclassify): New.
(fold_builtin_varargs): Handle BUILT_IN_FPCLASSIFY.
* builtins.def (BUILT_IN_FPCLASSIFY): New.
* c-common.c (handle_type_generic_attribute): Adjust to accept
fixed arguments before an elipsis.
(check_builtin_function_arguments): Handle BUILT_IN_FPCLASSIFY.
* doc/extend.texi: Document __builtin_fpclassify.

testsuite:
* gcc.dg/builtins-error.c: Test __builtin_fpclassify.  Also
add tests for all previous type-generic builtins.
* gcc.dg/pr28796-2.c: Add -DUNSAFE flag.
* gcc.dg/tg-tests.h: Test __builtin_fpclassify.

From-SVN: r135789

16 years agohashtable_policy.h (_Map_base<,, [...]): Add per DR 761.
Paolo Carlini [Fri, 23 May 2008 01:39:17 +0000 (01:39 +0000)]
hashtable_policy.h (_Map_base<,, [...]): Add per DR 761.

2008-05-22  Paolo Carlini  <paolo.carlini@oracle.com>

* include/tr1_impl/hashtable_policy.h (_Map_base<,,
std::_Select1st<_Pair>, true,>::at): Add per DR 761.
* testsuite/23_containers/unordered_map/dr761.cc: New.
* doc/xml/manual/intro.xml: Add an entry for DR 761.

From-SVN: r135787

16 years agoomp-low.c (gate_expand_omp_ssa): Remove.
Aldy Hernandez [Fri, 23 May 2008 01:31:04 +0000 (01:31 +0000)]
omp-low.c (gate_expand_omp_ssa): Remove.

        * omp-low.c (gate_expand_omp_ssa): Remove.
        (pass_expand_omp_ssa): Remove.
        (gate_expand_omp): Do not check for flag_openmp_ssa.
        * common.opt (-fopenmp-ssa): Remove.
        * passes.c (init_optimization_passes): Remove pass_expand_omp_ssa.

From-SVN: r135786

16 years agoDaily bump.
GCC Administrator [Fri, 23 May 2008 00:17:27 +0000 (00:17 +0000)]
Daily bump.

From-SVN: r135784

16 years agosh.opt (mfixed-range): New option.
Kaz Kojima [Thu, 22 May 2008 22:23:54 +0000 (22:23 +0000)]
sh.opt (mfixed-range): New option.

* config/sh/sh.opt (mfixed-range): New option.
* config/sh/sh-protos.h (sh_fix_range): Declare.
* config/sh/sh.c (sh_fix_range): New function.
* config/sh/sh.h (sh_fixed_range_str): Declare.
(OVERRIDE_OPTIONS): Call sh_fix_range if sh_fixed_range_str
is not empty.
* doc/invoke.texi (SH Options): Document -mfixed-range.

From-SVN: r135779

16 years agore PR libfortran/36302 (cshift and eoshift missing some kind=16 functions)
Thomas Koenig [Thu, 22 May 2008 21:55:43 +0000 (21:55 +0000)]
re PR libfortran/36302 (cshift and eoshift missing some kind=16 functions)

2008-05-22  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR libgfortran/36302
* gfortran.map (GFORTRAN_1.1): Add _gfortran_eoshift0_16,
_gfortran_eoshift0_16_char, _gfortran_eoshift2_16,
_gfortran_eoshift2_16_char,_gfortran_cshift0_16,
_gfortran_cshift0_16_char.  Sort alphabetically.
* intrinsics/eoshift0.c:  Add function for kind=16 integer.
* intrinsics/eoshift2.c:  Likewise.
* intrinsics/cshift0.c:  Likewise.

2008-05-22  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR libgfortran/36302
* gfortran.dg/cshift_large_1.f90:  New test.
* gfortran.dg/eoshift_large_1.f90:  New test.

From-SVN: r135777

16 years agosol2-10.h (SUBTARGET_RETURN_IN_MEMORY): Undefine it before the redeclaration.
Kai Tietz [Thu, 22 May 2008 19:39:12 +0000 (19:39 +0000)]
sol2-10.h (SUBTARGET_RETURN_IN_MEMORY): Undefine it before the redeclaration.

2008-05-22  Kai Tietz  <kai.tietz@onevision.com>

        * config/i386/sol2-10.h (SUBTARGET_RETURN_IN_MEMORY): Undefine
        it before the redeclaration.

From-SVN: r135776

16 years agoavr.c (get_sequence_length): Add new function.
Anatoly Sokolov [Thu, 22 May 2008 18:59:15 +0000 (22:59 +0400)]
avr.c (get_sequence_length): Add new function.

* config/avr/avr.c (get_sequence_length): Add new function.
(expand_prologue, expand_epilogue): Remove duplicate code.

From-SVN: r135775

16 years agore PR libgcj/35020 (Class.getSimpleName() differs from Sun Java)
Andrew Haley [Thu, 22 May 2008 16:20:55 +0000 (16:20 +0000)]
re PR libgcj/35020 (Class.getSimpleName() differs from Sun Java)

2008-05-22  Andrew Haley  <aph@redhat.com>

        PR libgcj/35020
        * java/lang/Class.java (getSimpleName): Import from GNU Classpath.

From-SVN: r135771

16 years agosee.c (see_pre_insert_extensions): Use copy_rtx to avoid invalid rtx sharing.
Rafael Avila de Espindola [Thu, 22 May 2008 15:49:30 +0000 (15:49 +0000)]
see.c (see_pre_insert_extensions): Use copy_rtx to avoid invalid rtx sharing.

* see.c (see_pre_insert_extensions): Use copy_rtx to avoid invalid rtx
sharing.

* gcc.c-torture/compile/20080522-1.c: New testcase.

From-SVN: r135770

16 years ago20080522-1.c: New testcase.
Richard Guenther [Thu, 22 May 2008 14:33:21 +0000 (14:33 +0000)]
20080522-1.c: New testcase.

2008-05-22  Richard Guenther  <rguenther@suse.de>

* gcc.c-torture/execute/20080522-1.c: New testcase.

From-SVN: r135768

16 years agodefaults.h (UNITS_PER_SIMD_WORD): Add scalar mode as argument.
H.J. Lu [Thu, 22 May 2008 12:43:16 +0000 (12:43 +0000)]
defaults.h (UNITS_PER_SIMD_WORD): Add scalar mode as argument.

2008-05-22  H.J. Lu  <hongjiu.lu@intel.com>

* defaults.h (UNITS_PER_SIMD_WORD): Add scalar mode as argument.
* doc/tm.texi (UNITS_PER_SIMD_WORD): Likewise.

* tree-vect-analyze.c (vect_compute_data_ref_alignment): Replace
UNITS_PER_SIMD_WORD with GET_MODE_SIZE (TYPE_MODE (vectype)).
(vect_update_misalignment_for_peel): Likewise.
(vector_alignment_reachable_p): Likewise.
* tree-vect-transform.c (vectorizable_load): Likewise.
* tree-vectorizer.c (vect_supportable_dr_alignment): Likewise.

* tree-vectorizer.c (get_vectype_for_scalar_type): Pass mode of
scalar_type to UNITS_PER_SIMD_WORD.

* config/arm/arm.h (UNITS_PER_SIMD_WORD): Updated.
* config/i386/i386.h (UNITS_PER_SIMD_WORD): Likewise.
* config/mips/mips.h (UNITS_PER_SIMD_WORD): Likewise.
* config/rs6000/rs6000.h (UNITS_PER_SIMD_WORD): Likewise.
* config/sparc/sparc.h (UNITS_PER_SIMD_WORD): Likewise.

From-SVN: r135759

16 years agodr781.cc: Add test variable.
Paolo Carlini [Thu, 22 May 2008 11:54:41 +0000 (11:54 +0000)]
dr781.cc: Add test variable.

2008-05-22  Paolo Carlini  <paolo.carlini@oracle.com>

* testsuite/26_numerics/complex/dr781.cc: Add test variable.

From-SVN: r135758

16 years agocomplex (proj(const std::complex<>&), proj(_Tp)): Add per DR 781.
Paolo Carlini [Thu, 22 May 2008 11:44:00 +0000 (11:44 +0000)]
complex (proj(const std::complex<>&), proj(_Tp)): Add per DR 781.

2008-05-22  Paolo Carlini  <paolo.carlini@oracle.com>

* include/std/complex (proj(const std::complex<>&), proj(_Tp)):
Add per DR 781.
* include/tr1_impl/complex(polar(const _Tp&, const _Up&)): Move to...
* include/tr1/complex: ... here.
* doc/xml/manual/intro.xml: Add an entry for DR 781.
* testsuite/26_numerics/complex/dr781.cc: Add.
* acinclude.m4 ([GLIBCXX_ENABLE_C99]): Update.
* configure: Regenerate.

From-SVN: r135757

16 years agore PR tree-optimization/36293 (ICE or wrong code in vector-strided gap tests)
Ira Rosen [Thu, 22 May 2008 10:39:44 +0000 (10:39 +0000)]
re PR tree-optimization/36293 (ICE or wrong code in vector-strided gap tests)

PR tree-optimization/36293
* tree-vect-transform.c (vect_transform_strided_load): Don't check
if the first load must be skipped because of a gap.

From-SVN: r135755

16 years agotree-dfa.c (refs_may_alias_p): Exit early if possible.
Richard Guenther [Thu, 22 May 2008 10:32:55 +0000 (10:32 +0000)]
tree-dfa.c (refs_may_alias_p): Exit early if possible.

2008-05-22  Richard Guenther  <rguenther@suse.de>

* tree-dfa.c (refs_may_alias_p): Exit early if possible.  Handle
more cases of offset disambiguation that is possible if
strict-aliasing rules apply.
* tree-ssa-loop-im.c (mem_refs_may_alias_p): Use refs_may_alias_p
for basic offset and type-based disambiguation.

* gcc.dg/tree-ssa/alias-18.c: New testcase.

From-SVN: r135754

16 years agoslice5.adb: New test.
Arnaud Charlet [Thu, 22 May 2008 09:24:10 +0000 (09:24 +0000)]
slice5.adb: New test.

* gnat.dg/slice5.adb: New test.
* gnat.dg/notnot.adb: New test.
* gnat.dg/tf_interface_1.ad[sb]: New test.
* gnat.dg/const1.adb: New test.
* gnat.dg/parameterlessfunc.adb: New test.
* gnat.dg/specs/interface5.ads: New test.
* gnat.dg/specs/cpp_assignment.ads: New test.

From-SVN: r135753

16 years ago* lib/dg-pch.exp (dg-pch): Fix if bracing.
Nathan Sidwell [Thu, 22 May 2008 06:31:33 +0000 (06:31 +0000)]
* lib/dg-pch.exp (dg-pch): Fix if bracing.

From-SVN: r135752

16 years agoi386.c (ix86_expand_vector_init_one_var): Use ix86_expand_vector_set on V16QImode...
H.J. Lu [Thu, 22 May 2008 05:28:19 +0000 (05:28 +0000)]
i386.c (ix86_expand_vector_init_one_var): Use ix86_expand_vector_set on V16QImode for SSE4.1.

gcc/

2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/i386.c (ix86_expand_vector_init_one_var): Use
ix86_expand_vector_set on V16QImode for SSE4.1.

gcc/testsuite/

2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>

* gcc.target/i386/m128-check.h (ARRAY_SIZE): New.
(CHECK_EXP): Use it.

* gcc.target/i386/set-v16qi-3.h: New.
* gcc.target/i386/sse2-set-v16qi-3.c: Likewise.
* gcc.target/i386/sse4_1-set-v16qi-3.c: Likewise.

From-SVN: r135750

16 years agoc.opt (Wimport): Mark as undocumented.
Tom Tromey [Thu, 22 May 2008 00:26:36 +0000 (00:26 +0000)]
c.opt (Wimport): Mark as undocumented.

* c.opt (Wimport): Mark as undocumented.
* doc/invoke.texi (Option Summary): Don't mention -Wimport or
-Wno-import.
(Warning Options): Likewise.
* doc/cppopts.texi: Don't mention -Wimport.

From-SVN: r135747

16 years agoDaily bump.
GCC Administrator [Thu, 22 May 2008 00:18:10 +0000 (00:18 +0000)]
Daily bump.

From-SVN: r135745

16 years agore PR middle-end/36286 (ICE with -ftree-loop-linear and -O1 and above)
Sebastian Pop [Wed, 21 May 2008 23:13:00 +0000 (23:13 +0000)]
re PR middle-end/36286 (ICE with -ftree-loop-linear and -O1 and above)

2008-05-21  Sebastian Pop  <sebastian.pop@amd.com>

PR tree-optimization/36286
PR tree-optimization/36287
* lambda-code.c (build_access_matrix): Do not use the loop->num
for computing the number of induction variables: use the loop depth
instead.

* testsuite/gcc.dg/tree-ssa/pr36287.c: New.
* testsuite/gfortran.dg/pr36286.f90: New.

From-SVN: r135741

16 years agore PR preprocessor/27777 (Bad diagnostic emission when #error contains a trigraph)
Tom Tromey [Wed, 21 May 2008 21:52:57 +0000 (21:52 +0000)]
re PR preprocessor/27777 (Bad diagnostic emission when #error contains a trigraph)

gcc/testsuite
PR preprocessor/27777:
* gcc.dg/cpp/pr27777.c: New file.
libcpp
PR preprocessor/27777:
* lex.c (cpp_output_line_to_string): New function.
* internal.h (_cpp_begin_message): Don't declare.
* errors.c (_cpp_begin_message): Now static.
* include/cpplib.h (cpp_output_line_to_string): Declare.
* directives.c (do_diagnostic): Rewrote.  Use
cpp_output_line_to_string.  Don't use _cpp_begin_message.

From-SVN: r135740

16 years agobitset (bitset<>::bitset(const char*)): Add per DR 778.
Paolo Carlini [Wed, 21 May 2008 20:46:16 +0000 (20:46 +0000)]
bitset (bitset<>::bitset(const char*)): Add per DR 778.

2008-05-21  Paolo Carlini  <paolo.carlini@oracle.com>

* include/std/bitset (bitset<>::bitset(const char*)): Add per DR 778.
(bitset<>::_M_copy_from_ptr): Add.
(bitset<>::_M_copy_from_string): Forward to the latter.
* doc/xml/manual/intro.xml: Add an entry for DR 778.
* testsuite/23_containers/bitset/cons/2.cc: Add.

From-SVN: r135738

16 years agolwg-active.html: Update to Revision R56.
Paolo Carlini [Wed, 21 May 2008 20:13:47 +0000 (20:13 +0000)]
lwg-active.html: Update to Revision R56.

2008-05-21  Paolo Carlini  <paolo.carlini@oracle.com>

* doc/html/ext/lwg-active.html: Update to Revision R56.
* doc/html/ext/lwg-closed.html: Likewise.
* doc/html/ext/lwg-defects.html: Likewise.

From-SVN: r135737

16 years agore PR c++/36023 (ICE with cast to variable-sized object)
Jakub Jelinek [Wed, 21 May 2008 19:57:06 +0000 (21:57 +0200)]
re PR c++/36023 (ICE with cast to variable-sized object)

PR c++/36023
* cp-tree.h (check_array_initializer): New prototype.
* decl.c (check_array_initializer): New function.
(check_initializer): Call it.
* semantics.c (finish_compound_literal): Call it for ARRAY_TYPEs.

* g++.dg/ext/complit10.C: New test.

From-SVN: r135735

16 years agore PR c++/36023 (ICE with cast to variable-sized object)
Jakub Jelinek [Wed, 21 May 2008 19:56:03 +0000 (21:56 +0200)]
re PR c++/36023 (ICE with cast to variable-sized object)

PR c++/36023
* cp-tree.h (check_array_initializer): New prototype.
* decl.c (check_array_initializer): New function.
(check_initializer): Call it.
* semantics.c (finish_compound_literal): Call it for ARRAY_TYPEs.

* g++.dg/ext/complit10.C: New test.

From-SVN: r135734

16 years agocygming.h (ASM_OUTPUT_LABELREF): Honor option -f(no-)leading-underscore.
Kai Tietz [Wed, 21 May 2008 19:36:28 +0000 (19:36 +0000)]
cygming.h (ASM_OUTPUT_LABELREF): Honor option -f(no-)leading-underscore.

2008-05-21  Kai Tietz  <kai.tietz@onevision.com>

        PR/36280
        * config/i386/cygming.h (ASM_OUTPUT_LABELREF): Honor
        option -f(no-)leading-underscore.

From-SVN: r135733

16 years agoi386.c (ix86_expand_vector_init_general): Use GET_MODE_NUNITS (mode).
H.J. Lu [Wed, 21 May 2008 19:00:47 +0000 (19:00 +0000)]
i386.c (ix86_expand_vector_init_general): Use GET_MODE_NUNITS (mode).

2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/i386.c (ix86_expand_vector_init_general): Use
GET_MODE_NUNITS (mode).

From-SVN: r135732

16 years ago* gfortran.dg/nint_2.f90: XFAIL only when using -O0.
Janis Johnson [Wed, 21 May 2008 18:13:32 +0000 (18:13 +0000)]
* gfortran.dg/nint_2.f90: XFAIL only when using -O0.

From-SVN: r135731

16 years agoinvoke.texi: Add cpu_type's 464 and 464fp.
Peter Bergner [Wed, 21 May 2008 18:09:07 +0000 (13:09 -0500)]
invoke.texi: Add cpu_type's 464 and 464fp.

* doc/invoke.texi: Add cpu_type's 464 and 464fp.
(-mmulhw): Add 464 to description.
(-mdlmzb): Likewise.
* config.gcc: Handle --with-cpu=464 and --with-cpu=464fp.
* config/rs6000/rs6000.c (processor_target_table): Add 464 and
464fp entries.
* config/rs6000/rs6000.h (ASM_CPU_SPEC): Add 464 and 464fp support.
* config/rs6000/t-fprules (MULTILIB_MATCHES_FLOAT): Include -mcpu=464.
* config/rs6000/rs6000.md: Update comments for 464.

From-SVN: r135730

16 years agosourcebuild.texi (Test Directives): Add dg-xfail-run-if.
Janis Johnson [Wed, 21 May 2008 18:03:32 +0000 (18:03 +0000)]
sourcebuild.texi (Test Directives): Add dg-xfail-run-if.

gcc/
* doc/sourcebuild.texi (Test Directives): Add dg-xfail-run-if.
gcc/testsuite/
* lib/target-supports-dg.exp (dg-xfail-run-if): New.
* gcc.test-framework/dg-do-run-xrif-exp-F.c: New test.
* gcc.test-framework/dg-do-run-xrif-exp-P.c: New test.
* gcc.test-framework/dg-do-run-xrif-exp-XF.c: New test.
* gcc.test-framework/dg-do-run-xrif-exp-XP.c: New test.
* gcc.test-framework/dg-dot-run-xrif-exp-F.c: New test.
* gcc.test-framework/dg-dot-run-xrif-exp-P.c: New test.
* gcc.test-framework/dg-dot-run-xrif-exp-XF.c: New test.
* gcc.test-framework/dg-dot-run-xrif-exp-XP.c: New test.
* gcc.test-framework/test-framework.awk: Handle new tests.

From-SVN: r135729

16 years agosse.md (vec_extractv4sf): Removed.
H.J. Lu [Wed, 21 May 2008 17:45:50 +0000 (17:45 +0000)]
sse.md (vec_extractv4sf): Removed.

2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/sse.md (vec_extractv4sf): Removed.
(vec_extractv2df): Likewise.
(vec_extractv2di): Likewise.
(vec_extractv4si): Likewise.
(vec_extractv8hi): Likewise.
(vec_extractv16qi): Likewise.
(vec_extract<mode>): New.

From-SVN: r135728

16 years agosse.md (vec_setv4sf): Removed.
H.J. Lu [Wed, 21 May 2008 17:09:32 +0000 (17:09 +0000)]
sse.md (vec_setv4sf): Removed.

2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/sse.md (vec_setv4sf): Removed.
(vec_setv2df): Likewise.
(vec_setv2di): Likewise.
(vec_setv4si): Likewise.
(vec_setv8hi): Likewise.
(vec_setv16qi): Likewise.
(vec_set<mode>): New.

From-SVN: r135726

16 years agoi386.c (ix86_expand_vector_init_general): Remove goto for vec_concat and vec_interleave.
H.J. Lu [Wed, 21 May 2008 16:57:05 +0000 (16:57 +0000)]
i386.c (ix86_expand_vector_init_general): Remove goto for vec_concat and vec_interleave.

2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/i386.c (ix86_expand_vector_init_general): Remove
goto for vec_concat and vec_interleave.

From-SVN: r135725

16 years agosse.md (vec_initv4sf): Removed.
H.J. Lu [Wed, 21 May 2008 16:56:14 +0000 (16:56 +0000)]
sse.md (vec_initv4sf): Removed.

2008-05-21  H.J. Lu  <hongjiu.lu@intel.com>

* config/i386/sse.md (vec_initv4sf): Removed.
(vec_initv2df): Likewise.
(vec_initv2di): Likewise.
(vec_initv4si): Likewise.
(vec_initv8hi): Likewise.
(vec_initv16qi): Likewise.
(vec_init<mode>): New.

From-SVN: r135724

16 years agore PR fortran/36257 (SPREAD gives wrong results with array CHARACTER parameters)
Francois-Xavier Coudert [Wed, 21 May 2008 16:01:08 +0000 (16:01 +0000)]
re PR fortran/36257 (SPREAD gives wrong results with array CHARACTER parameters)

PR fortran/36257

* gfortran.dg/char_length_12.f90: New test.

* iresolve.c (check_charlen_present): Don't force the rank to 1.

From-SVN: r135723

16 years ago* collect2.c (find_a_file): Use IS_ABSOLUTE_PATH.
Joseph Myers [Wed, 21 May 2008 15:40:48 +0000 (16:40 +0100)]
* collect2.c (find_a_file): Use IS_ABSOLUTE_PATH.

From-SVN: r135721

16 years agosymtab.h (HT_ALLOCED): Remove.
Tom Tromey [Wed, 21 May 2008 15:00:59 +0000 (15:00 +0000)]
symtab.h (HT_ALLOCED): Remove.

libcpp
* include/symtab.h (HT_ALLOCED): Remove.
(ht_purge): Declare.
* symtab.c (DELETED): New define.
(ht_lookup): Update comment.
(ht_lookup_with_hash): Handle deleted entries.  Remove HT_ALLOCED
code.  Use subobject allocator for strings, if it exists.
(ht_expand): Handle deleted entries.
(ht_forall): Likewise.
(ht_purge): New function.
(ht_dump_statistics): Print deletion statistics.
gcc
* ggc-zone.c (lookup_page_table_if_allocated): New function.
(zone_find_object_offset): Likewise.
(gt_ggc_m_S): Likewise.
(highest_bit): Likewise.
* ggc-page.c (gt_ggc_m_S): New function.
* stringpool.c (string_stack): Remove.
(init_stringpool): Update.
(ggc_alloc_string): Use ggc_alloc.
(maybe_delete_ident): New function.
(ggc_purge_stringpool): Likewise.
(gt_ggc_m_S): Remove.
* ggc-common.c (ggc_protect_identifiers): New global.
(ggc_mark_roots): Call ggc_purge_stringpool.  Use
ggc_protect_identifiers.
* ggc.h (ggc_protect_identifiers): Declare.
(gt_ggc_m_S): Update.
(ggc_purge_stringpool): Declare.
* toplev.c (compile_file): Set and reset ggc_protect_identifiers.
* gengtype.c (write_types_process_field) <TYPE_STRING>: Remove
special case.
(write_root): Cast gt_ggc_m_S to gt_pointer_walker.
gcc/cp
* mangle.c (save_partially_mangled_name): Remove.
(restore_partially_mangled_name): Likewise.
(write_encoding): Update.
(write_unqualified_name): Likewise.
(start_mangling): Always use name_obstack.  Remove 'ident_p'
argument.
(get_identifier_nocopy): Remove.
(finish_mangling_internal): Rename from finish_mangling.
(finish_mangling): New function.
(finish_mangling_get_identifier): Likewise.
(partially_mangled_name, partially_mangled_name_len): Remove.
(mangle_decl_string): Change return type.  Update.
(mangle_decl, mangle_type_string, mangle_special_for_type,
mangle_ctor_vtbl_for_type, mangle_thunk, mangle_guard_variable,
mangle_ref_init_variable): Update.

From-SVN: r135720

16 years agoconfig.gcc (sparc-*-linux*): Always include sparc/t-linux in tmake_file.
David S. Miller [Wed, 21 May 2008 09:38:40 +0000 (09:38 +0000)]
config.gcc (sparc-*-linux*): Always include sparc/t-linux in tmake_file.

* config.gcc (sparc-*-linux*): Always include sparc/t-linux in
tmake_file.

From-SVN: r135713

16 years agocfgexpand.c (tree_expand_cfg): Zap the EH throw statement table once finished.
Eric Botcazou [Wed, 21 May 2008 09:22:09 +0000 (09:22 +0000)]
cfgexpand.c (tree_expand_cfg): Zap the EH throw statement table once finished.

* cfgexpand.c (tree_expand_cfg): Zap the EH throw statement table
once finished.

From-SVN: r135712

16 years agoNew file.
Thomas Quinot [Wed, 21 May 2008 07:01:56 +0000 (07:01 +0000)]
New file.

From-SVN: r135709

16 years agomemops-asm.c: Set inside_main.
Nathan Sidwell [Wed, 21 May 2008 06:31:37 +0000 (06:31 +0000)]
memops-asm.c: Set inside_main.

* gcc.c-torture/execute/builtins/memops-asm.c: Set inside_main.

* lib/gcc-dg.exp (cleanup-saved-temps): Add optional list of
suffixes not to delete.
* gcc.dg/pch/save-temps-1.c: Don't delete ".s" temp.
* g++.dg/pch/pch.C: Likewise.

* g++.old-deja/g++.pt/static11.C: Replace xfail by target requirement.

* lib/dg-pch.exp (dg-pch): Don't expect .s files if there are
dg-errors expected.

From-SVN: r135708

16 years agore PR libgcj/36252 (OutOfMemoryError on simple text conversion.)
David Daney [Wed, 21 May 2008 03:49:03 +0000 (03:49 +0000)]
re PR libgcj/36252 (OutOfMemoryError on simple text conversion.)

2008-05-20  David Daney  <ddaney@avtrex.com>

PR libgcj/36252
* java/lang/natString.ccn: Add
#include <java/io/CharConversionException.h>.
(init (byte[], int, int, String)): Catch and ignore
CharConversionException.  Break out of conversion loop
on incomplete input.
* testsuite/libjava.lang/PR36252.java: New test.
* testsuite/libjava.lang/PR36252.out: New file, its expected output.
* testsuite/libjava.lang/PR36252.jar: New file, its pre-compiled
jar file.

From-SVN: r135705

16 years agoDaily bump.
GCC Administrator [Wed, 21 May 2008 00:17:42 +0000 (00:17 +0000)]
Daily bump.

From-SVN: r135701

16 years agore PR testsuite/20771 (Duplicate PCH test names)
Janis Johnson [Wed, 21 May 2008 00:04:45 +0000 (00:04 +0000)]
re PR testsuite/20771 (Duplicate PCH test names)

PR testsuite/20771
* lib/dg-pch.exp: Move a flag in arguments to dg-test to differentiate
compile results for pch test lines in gcc.sum.
* gcc.dg/pch/counter-2.c: Add comments to dg-error directives to
make them unique in gcc.sum.
* gcc.dg/pch/valid-1.c: Ditto.
* gcc.dg/pch/valid-2.c: Ditto.
* gcc.dg/pch/valid-3.c: Ditto.
* gcc.dg/pch/warn-1.c: Same for dg-warning.

From-SVN: r135696