Commit Graph

92166 Commits

Author SHA1 Message Date
Tobias Burnus
346a77d1d8 gfortran.h (enum init_local_real.): Add GFC_INIT_REAL_SNAN.
2009-03-27  Tobias Burnus  <burnus@net-b.de>

        * gfortran.h (enum init_local_real.): Add GFC_INIT_REAL_SNAN.
        (gfc_expr): Add is_snan.
        * trans-const.c (gfc_conv_mpfr_to_tree): Support SNaN.
        (gfc_conv_constant_to_tree): Update call to gfc_conv_mpfr_to_tree.
        * trans-const.h (gfc_conv_mpfr_to_tree): Update prototype.
        * resolve.c (build_default_init_expr): Update call.
        * target-memory.c (encode_float): Ditto.
        * trans-intrinsic.c
        * (gfc_conv_intrinsic_aint,gfc_conv_intrinsic_mod,

From-SVN: r145129
2009-03-27 22:55:13 +01:00
Dodji Seketeli
68599f330b re PR debug/37959 (g++ does not emit DW_AT_explicit)
PR debug/37959
	* dwarf2out.c (dwarf_attr_name): Handle DW_AT_explicit attribute.
	(gen_subprogram_die): When a function is explicit, generate the
	DW_AT_explicit attribute.
	* langhooks.h (struct lang_hooks_for_decls): Add
	function_decl_explicit_p langhook.
	* langhooks-def.h (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Define.
	(LANG_HOOKS_DECLS): Add LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P.

	* cp-objcp-common.h (LANG_HOOKS_FUNCTION_DECL_EXPLICIT_P): Define.
	(cp_function_decl_explicit_p): New prototype.
	* cp-objcp-common.c (cp_function_decl_explicit_p): New function.

	* g++.dg/debug/dwarf2/explicit-constructor.C: New test.

Co-Authored-By: Jakub Jelinek <jakub@redhat.com>

From-SVN: r145128
2009-03-27 22:44:21 +01:00
Jakub Jelinek
64d7685c6f builtins.c (fold_builtin_memory_op): Optimize memmove into memcpy if we can prove source and destination don't overlap.
* builtins.c (fold_builtin_memory_op): Optimize memmove
	into memcpy if we can prove source and destination don't overlap.

	* gcc.dg/memmove-2.c: New test.
	* gcc.dg/memmove-3.c: New test.

From-SVN: r145127
2009-03-27 22:40:08 +01:00
Jakub Jelinek
9f5e9983d9 tree-inline.c: Include gt-tree-inline.h.
* tree-inline.c: Include gt-tree-inline.h.
	(clone_fn_id_num): New variable.
	(clone_function_name): New function.
	(tree_function_versioning): Use it.
	* Makefile.in (GTFILES): Add tree-inline.c.

	* gcc.dg/ipa/ipacost-1.c: Adjust match pattern for change
	in clone naming.

From-SVN: r145126
2009-03-27 22:36:53 +01:00
Mark Mitchell
a143dc135e * crontab: Add 4.4 branch snapshots.
From-SVN: r145125
2009-03-27 21:00:28 +00:00
Mark Mitchell
e54d52a8fb * BASE-VER: Change to 4.5.0.
From-SVN: r145124
2009-03-27 20:56:48 +00:00
Xinliang David Li
e9d51dc6a3 Fix for PR39557
From-SVN: r145119
2009-03-27 17:20:51 +00:00
Xinliang David Li
4577cea1cd Fix for PR39548
From-SVN: r145118
2009-03-27 17:18:58 +00:00
H.J. Lu
0f7464f403 c-common.c (pointer_int_sum): Use %wd on return from tree_low_cst.
2009-03-27  H.J. Lu  <hongjiu.lu@intel.com>

	* c-common.c (pointer_int_sum): Use %wd on return from
	tree_low_cst.

From-SVN: r145112
2009-03-27 08:38:25 -07:00
H.J. Lu
a8847a7f30 c-common.c (pointer_int_sum): Use HOST_WIDE_INT_PRINT_DEC on return from tree_low_cst.
2009-03-27  H.J. Lu  <hongjiu.lu@intel.com>

	* c-common.c (pointer_int_sum): Use HOST_WIDE_INT_PRINT_DEC
	on return from tree_low_cst.

From-SVN: r145109
2009-03-27 07:44:13 -07:00
Andrew Pinski
8ec0d73b34 re PR c++/38638 (ICE superfluous 'typename')
gcc/cp/

2009-03-27  Andrew Pinski  <andrew_pinski@playstation.sony.com>

	PR c++/38638
	* parser.c (cp_parser_elaborated_type_specifier): If we have a
	typename tag and don't have either a TYPE_DECL or a
	TEMPLATE_ID_EXPR, set the type to NULL.

gcc/testsuite/

2009-03-27  Andrew Pinski  <andrew_pinski@playstation.sony.com>

	PR c++/38638
	* g++.dg/template/typename17.C: New testcase.
	* g++.dg/template/typename18.C: New testcase.

From-SVN: r145107
2009-03-27 06:36:33 -07:00
Andrew Pinski
b0957daf07 re PR c++/36799 ([c++0x] error on va_copy in -std=c++0x mode)
gcc/

2009-03-27  Andrew Pinski  <andrew_pinski@playstation.sony.com>

	PR c++/36799
	* ginclude/stdarg.h (va_copy): Define also for __GXX_EXPERIMENTAL_CXX0X__.

gcc/testsuite/

2009-03-27  Andrew Pinski  <andrew_pinski@playstation.sony.com>

	PR c++/36799
	* g++.dg/other/var_copy-1.C: New test.

From-SVN: r145106
2009-03-27 06:28:44 -07:00
Simon Martin
48b6cd9d20 re PR c++/37647 (ICE with invalid use of constructor)
gcc/cp/

2009-03-27  Simon Martin  <simartin@users.sourceforge.net>

	PR c++/37647
	* decl.c (grokdeclarator): Reject [con|de]stuctors in a non-class
	scope.

gcc/testsuite/

2009-03-27  Simon Martin  <simartin@users.sourceforge.net>

	PR c++/37647
	* g++.dg/parse/ctor9.C: New test.

From-SVN: r145105
2009-03-27 06:17:37 -07:00
Simon Martin
6a837908f9 re PR c++/29727 (ICE on invalid initializer for template member)
gcc/cp/

2009-03-27  Simon Martin  <simartin@users.sourceforge.net>

	PR c++/29727
	* decl.c (check_array_designated_initializer): Handle error_mark_node.

gcc/testsuite/

2009-03-27  Simon Martin  <simartin@users.sourceforge.net>

	PR c++/29727
	* g++.dg/init/error2.C: New test.

From-SVN: r145104
2009-03-27 06:11:29 -07:00
Manuel López-Ibáñez
a5f805df58 re PR c++/35652 (offset warning should be given in the front-end)
gcc/

2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>

	PR c++/35652
	* builtins.h (c_strlen): Do not warn here.
	* c-typeck.c (build_binary_op): Adjust calls to pointer_int_sum.
	* c-common.c (pointer_int_sum): Take an explicit location.
	Warn about offsets out of bounds.
	* c-common.h (pointer_int_sum): Adjust declaration.

gcc/cp/

2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>

	PR c++/35652
	* typeck.c (cp_pointer_sum): Adjust call to pointer_int_sum.

gcc/testsuite/

2009-03-27  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>

	PR c++/35652
	* gcc.dg/pr35652.C: New.
	* g++.dg/warn/pr35652.C: New.
	* gcc.dg/format/plus-1.c: Adjust message.

From-SVN: r145102
2009-03-27 05:52:52 -07:00
GCC Administrator
9fd1d85489 Daily bump.
From-SVN: r145100
2009-03-27 00:16:39 +00:00
Ralf Wildenhues
6f401211af invoke.texi (i386 and x86-64 Windows Options): Fix texinfo markup glitch.
gcc/
        * doc/invoke.texi (i386 and x86-64 Windows Options): Fix texinfo
        markup glitch.

From-SVN: r145095
2009-03-26 21:20:00 +00:00
Jakub Jelinek
5a59b39e8a re PR c++/39554 (-Wdisallowed-function-list fails when #including <algorithm>)
PR c++/39554
	* opts.c (warn_if_disallowed_function_p): Don't assume
	get_callee_fndecl must return non-NULL.

	* gcc.dg/wdisallowed-functions-3.c: New test.
	* g++.dg/warn/Wdisallowed-functions-3.C: New test.

From-SVN: r145094
2009-03-26 20:27:17 +01:00
Vladimir Makarov
d5f89b5302 re PR rtl-optimization/39522 (fix for PR37514 gives FAIL: gcc.c-torture/execute/stdarg-3.c compilation, -O3 -fomit-frame-pointer -funroll-loops (internal compiler error))
2009-03-26  Vladimir Makarov  <vmakarov@redhat.com>

	PR rtl-optimization/39522
	* reload1.c (reload_as_needed): Invalidate reg_last_reload_reg too
	when reg_reloaded_valid is set.

From-SVN: r145093
2009-03-26 19:21:18 +00:00
Andrew Haley
359b867255 re PR c++/39380 (All programs that link Java and C++ libraries fail when optimized)
2009-03-26  Andrew Haley  <aph@redhat.com>

        PR C++/39380
        * decl2.c (possibly_inlined_p): If java exceptions are in use
        don't inline a decl unless it is explicitly marked inline.
        * lex.c: (pragma_java_exceptions): New variable.
        (handle_pragma_java_exceptions): Set pragma_java_exceptions.
        * cp-tree.h (pragma_java_exceptions): Declare new variable.

From-SVN: r145091
2009-03-26 15:17:26 +00:00
Ulrich Weigand
61238a7986 divv2df3.c: New file.
* config/spu/divv2df3.c: New file.
	* config/spu/t-spu-elf (LIB2FUNCS_STATIC_EXTRA): Add it.
	(DPBIT_FUNCS): Filter out _div_df.

From-SVN: r145089
2009-03-26 14:36:27 +00:00
Kaveh R. Ghazi
d43f68d639 inline-33.c: Fix when pic.
* gcc.dg/inline-33.c: Fix when pic.

From-SVN: r145085
2009-03-26 06:12:58 +00:00
GCC Administrator
07e3462d11 Daily bump.
From-SVN: r145083
2009-03-26 00:16:55 +00:00
Bernd Schmidt
03f8829b50 bfin.c (bfin_optimize_loop): If the LSETUP goes before a jump insn...
* config/bfin/bfin.c (bfin_optimize_loop): If the LSETUP goes before
	a jump insn, count that jump in the distance to the loop start.

From-SVN: r145080
2009-03-25 23:53:39 +00:00
Paolo Carlini
c0b753c770 2009-03-25 Paolo Carlini <paolo.carlini@oracle.com>
* Tweak last ChangeLog entry.

From-SVN: r145079
2009-03-25 23:45:43 +00:00
Paolo Carlini
13c4b87740 [multiple changes]
2009-03-25  Edward Smith-Rowland  <3dw4rd@verizon.net>

	* include/std/fstream (basic_filebuf<>::open(const std::string&,
	ios_base::openmode), basic_ifstream<>::basic_ifstream(const
	std::string&, ios_base::openmode), basic_ifstream<>::
	open(const std::string&, ios_base::openmode), basic_ofstream<>::
	basic_ofstream(const std::string&, ios_base::openmode),
	basic_ofstream<>::open(const std::string&, ios_base::openmode),
	basic_fstream<>::basic_fstream(const std::string&, ios_base::openmode),
	basic_fstream<>::open(const std::string&, ios_base::openmode)):
	Add in C++0x mode.
	* testsuite/27_io/basic_ofstream/open/char/2.cc: New.
	* testsuite/27_io/basic_ofstream/cons/char/2.cc: Likewise.
	* testsuite/27_io/basic_fstream/open/char/1.cc: Likewise.
	* testsuite/27_io/basic_fstream/cons/char/1.cc: Likewise.
	* testsuite/27_io/basic_ifstream/open/char/1.cc: Likewise.
	* testsuite/27_io/basic_ifstream/cons/char/1.cc: Likewise.
	* testsuite/27_io/basic_filebuf/open/char/5.cc: Likewise.

2009-03-25  Paolo Carlini  <paolo.carlini@oracle.com>

	* testsuite/27_io/basic_ofstream/cons/char/2.cc: Rename to...
	* testsuite/27_io/basic_ofstream/cons/char/1.cc: ... this.    
	* testsuite/27_io/basic_fstream/cons/3.cc: Rename to...
	* testsuite/27_io/basic_fstream/cons/1.cc: ... this.

From-SVN: r145078
2009-03-25 23:37:53 +00:00
Kaz Kojima
9fdcdc749b re PR target/39523 (SH: global registers are wrongly saved)
PR target/39523
	* config/sh/sh.c (calc_live_regs): Fix condition for global
	registers except PIC_OFFSET_TABLE_REGNUM.

From-SVN: r145077
2009-03-25 22:23:27 +00:00
Kai Tietz
46994828ef invoke.texi (-mconsole): New.
2009-03-25  Kai Tietz  <kai.tietz@onevision.com>

        PR/39518
        * doc/invoke.texi (-mconsole): New.
        (-mcygwin): New.
        (-mno-cygwin): New.
        (-mdll): New.
        (-mnop-fun-dllimport): New.
        (-mthread): New.
        (-mwin32): New.
        (-mwindows): New.
        (sub section "i386 and x86-64 Windows Options"): New.

From-SVN: r145070
2009-03-25 18:41:58 +01:00
Paolo Carlini
4ba8a4cb63 forward_list.h (_Fwd_list_node_base<>:: _M_transfer_after, [...]): Move out of line...
2009-03-25  Paolo Carlini  <paolo.carlini@oracle.com>

	* include/bits/forward_list.h (_Fwd_list_node_base<>::
	_M_transfer_after, _M_reverse_after): Move out of line...
	* include/bits/forward_list.tcc: ... here.
	(forward_list<>::reverse): Move inline...
	* include/bits/forward_list.h: ... here; minor cosmetic changes.

From-SVN: r145069
2009-03-25 16:41:27 +00:00
Uros Bizjak
e50ea10b75 atomic-5.c: Cleanup cpuid usage.
* testsuite/libgomp.c/atomic-5.c: Cleanup cpuid usage.
	* testsuite/libgomp.c/atomic-6.c: Ditto.

From-SVN: r145061
2009-03-25 14:36:02 +01:00
Ralf Corsepius
370017b40f rtems-elf.h: Remove LINK_GCC_C_SEQUENCE_SPEC.
2009-03-25  Ralf Corsépius <ralf.corsepius@rtems.org>

	* config/arm/rtems-elf.h: Remove LINK_GCC_C_SEQUENCE_SPEC.
	* config/rs6000/t-rtems: Remove MULTILIB_EXTRA_OPTS.

From-SVN: r145060
2009-03-25 13:54:16 +01:00
Richard Guenther
ae56044005 re PR middle-end/39497 (dfp.c:239: warning: dereferencing pointer '({anonymous})' does break strict-aliasing rules)
2009-03-24  Richard Guenther  <rguenther@suse.de>

	PR middle-end/39497
	* Makefile.in (dfp.o-warn): Use -fno-strict-aliasing instead
	of -Wno-error.

From-SVN: r145057
2009-03-25 12:00:32 +00:00
Alexander Monakov
cd510f15b8 ia64.c (ia64_set_sched_flags): Zero spec_info->mask when neither of haifa/selective schedulers are working.
2009-03-25  Andrey Belevantsev  <abel@ispras.ru>
            Alexander Monakov  <amonakov@ispras.ru>

        * config/ia64/ia64.c (ia64_set_sched_flags): Zero spec_info->mask when
	neither of haifa/selective schedulers are working.

        * gcc.target/ia64/20090324-1.c: New test.

From-SVN: r145055
2009-03-25 13:04:36 +03:00
Erven Rohou
7369c1d0bf Update my email address.
From-SVN: r145053
2009-03-25 09:14:46 +01:00
Jakub Jelinek
969a543346 re PR c/27898 (Compile failure with --combine and anonymous structures)
PR c/27898
	* gcc.dg/pr27898.c: New test.

	PR tree-optimization/32139
	* gcc.c-torture/compile/pr32139.c: New test.

From-SVN: r145052
2009-03-25 08:58:55 +01:00
Ralf Wildenhues
44ab0f0e11 invoke.texi (Debugging Options): Fix description of -fno-merge-debug-strings.
gcc/
	* doc/invoke.texi (Debugging Options): Fix description of
	-fno-merge-debug-strings.

From-SVN: r145051
2009-03-25 06:42:21 +00:00
GCC Administrator
180ad32179 Daily bump.
From-SVN: r145046
2009-03-25 00:17:00 +00:00
Jason Merrill
f7cbd40ea6 re PR c++/28274 (Redeclaration with extra default argument doesn't work)
PR c++/28274
        * name-lookup.c (pushdecl_maybe_friend): Check default args later.

From-SVN: r145042
2009-03-24 18:26:21 -04:00
Hans-Peter Nilsson
e6142656cb libgcc.ver: New version-script.
* config/cris/libgcc.ver: New version-script.
	* config/cris/t-linux (SHLIB_MAPFILES): Use it.

From-SVN: r145037
2009-03-24 18:02:37 +00:00
Hans-Peter Nilsson
ad9646c724 configure.ac: Add pattern crisv32-*-* for "nop".
* configure.ac <GAS features, nop mnemonic>: Add pattern
	crisv32-*-* for "nop".
	<GAS features, Thread-local storage>: Add item for CRIS and
	CRIS v32.
	* configure: Regenerate.

From-SVN: r145036
2009-03-24 17:46:03 +00:00
Jerry DeLisle
760ab26f43 re PR fortran/39528 (repeated entries are not read when using list-directed input)
2009-03-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libfortran/39528
	* gfortran.dg/read_repeat.f90: New test.

From-SVN: r145031
2009-03-24 12:30:17 +00:00
Jerry DeLisle
b710b6bc87 re PR fortran/39528 (repeated entries are not read when using list-directed input)
2009-03-24  Jerry DeLisle  <jvdelisle@gcc.gnu.org>

	PR libfortran/39528
	* io/list_read.c (list_formatted_read_scalar): Move check for read
	completion to just after the check for a repeated value.

From-SVN: r145030
2009-03-24 12:24:29 +00:00
Ira Rosen
09ac447328 re PR tree-optimization/39529 (ICE on valid code)
PR tree-optimization/39529
	* tree-vect-transform.c (vect_create_data_ref_ptr): Call
	mark_sym_for_renaming for the tag copied to the new vector
	pointer.

From-SVN: r145029
2009-03-24 12:18:19 +00:00
Arthur Loiret
d94a427e80 config.host (alpha*-*-linux*): Use driver-alpha.o and alpha/x-alpha.
2009-03-24  Arthur Loiret  <aloiret@debian.org>

	* config.host (alpha*-*-linux*): Use driver-alpha.o and
	alpha/x-alpha.
	* config/alpha/linux.h (host_detect_local_cpu): Declare, add to
	EXTRA_SPEC_FUNCTIONS.
	(MCPU_MTUNE_NATIVE_SPECS, DRIVER_SELF_SPECS): New macros.
	* config/alpha/driver-alpha.c, config/alpha/x-alpha: New.
	* doc/invoke.texi (DEC Alpha Options): Document 'native' value for
	-march and -mtune options.

From-SVN: r145028
2009-03-24 10:33:57 +00:00
Mark Mitchell
92da2d44d6 28277.cc: Likewise.
* testsuite/21_strings/basic_string/inserters_extractors/wchar_t/28277.cc:
	Likewise.
	* testsuite/27_io/basic_ostream/inserters_character/wchar_t/28277-3.cc:
	Likewise.
	* testsuite/27_io/basic_ostream/inserters_character/wchar_t/28277-4.cc:
	Likewise.
	* testsuite/ext/vstring/inserters_extractors/wchar_t/28277.cc:
	Likewise.

From-SVN: r145027
2009-03-24 06:37:16 +00:00
Mark Mitchell
51d3ad7eda iterator.cc: Update copyright year(s).
* testsuite/25_algorithms/search_n/iterator.cc: Update copyright
	year(s).
	* testsuite/25_algorithms/heap/moveable.cc: Likewise.
	* testsuite/21_strings/basic_string/inserters_extractors/char/28277.cc
	Likewise.
	* testsuite/27_io/basic_ostream/inserters_character/char/28277-3.cc:
	Likewise.
	* testsuite/27_io/basic_ostream/inserters_character/char/28277-4.cc:
	Likewise.
	* testsuite/ext/vstring/inserters_extractors/char/28277.cc: Likewise.

From-SVN: r145026
2009-03-24 04:29:20 +00:00
Ralf Corsepius
722d07aa78 t-rtems: Add m5329 multilib.
2009-03-24  Ralf Corsépius <ralf.corsepius@rtems.org>

	* config/m68k/t-rtems: Add m5329 multilib.

From-SVN: r145024
2009-03-24 05:20:30 +01:00
GCC Administrator
f6a85b953d Daily bump.
From-SVN: r145022
2009-03-24 00:16:50 +00:00
Dodji Seketeli
603f595942 re PR debug/39524 (Duplicate C++ DW_TAG_variable breaking its DW_AT_location resolution)
PR debug/39524
	* dwarf2out.c (gen_variable_die): Avoid adding duplicate declaration
	nodes.

	* g++.dg/debug/dwarf2/imported-decl-1.C: New test.

Co-Authored-By: Jakub Jelinek <jakub@redhat.com>

From-SVN: r145018
2009-03-24 00:21:38 +01:00
Jason Merrill
27425fe7d0 add PR tag
From-SVN: r145015
2009-03-23 17:13:34 -04:00