- 04 Dec, 2007 5 commits
-
-
2007-12-04 Tobias Burnus <burnus@net-b.de> PR fortran/34318 * module.c (mio_gmp_real): Properly write NaN and Infinity. 2007-12-04 Tobias Burnus <burnus@net-b.de> PR fortran/34318 * gfortran.dg/module_nan.f90: New. From-SVN: r130600
Tobias Burnus committed -
gcc/testsuite/ * lib/target-supports.exp (get_compiler_messages): Replace with... (check_compile): ...this new procedure. Handle TYPE == executable. Use comments in the source to determine the correct extension. Return a pair containing the compiler output and the output filename. Don't delete the file here. (check_no_compiler_messages_nocache): New procedure. (check_no_compiler_messages): Use it. (check_no_messages_and_pattern_nocache): New procedure. (check_no_messages_and_pattern): Use it. (check_runtime_nocache, check_runtime): New procedures. (check_effective_target_tls): Use check_no_compiler_messages. (check_effective_target_tls_native): Use check_no_messages_and_pattern. (check_effective_target_tls_runtime): Use check_runtime. (check_effective_target_fstack_protector): Likewise. (check_iconv_available): Use check_runtime_nocache. (check_effective_target_fortran_large_real): Use check_no_compiler_messages. (check_effective_target_fortran_large_int): Likewise. (check_effective_target_static_libgfortran): Likewise. (check_750cl_hw_available): Use check_cached_effective_target and check_runtime_nocache. (check_vmx_hw_available): Likewise. (check_effective_target_broken_cplxf_arg): Likewise. (check_alpha_max_hw_available): Use check_runtime. (check_function_available): Use check_no_compiler_messages. (check_cxa_atexit_available): Use check_cached_effective_target and check_runtime_nocache. (check_effective_target_dfp_nocache): Use check_no_compiler_messages_nocache. (check_effective_target_dfprt_nocache): Use check_runtime_nocache. (check_effective_target_dfp): Use check_cached_effective_target. (check_effective_target_dfprt): Likewise. (check_effective_target_arm_neon_hw): Use check_runtime. (check_effective_target_ultrasparc_hw): Likewise. (check_effective_target_c99_runtime): Use check_no_compiler_messages_nocache. From-SVN: r130599
Richard Sandiford committed -
From-SVN: r130598
Ben Elliston committed -
From-SVN: r130597
Ben Elliston committed -
From-SVN: r130595
GCC Administrator committed
-
- 03 Dec, 2007 14 commits
-
-
2007-12-03 Paolo Carlini <pcarlini@suse.de> * src/hashtable.cc (__prime_list): Use __SIZEOF_LONG__. From-SVN: r130592
Paolo Carlini committed -
PR33713 * doc/invoke.texi: Remove -fforce-addr documentation. * expr.c (emit_move_insn): Remove use of flag_force_addr. (expand_expr_real_1): Same. (do_tablejump): Same. Call memory_address instead of memory_address_noforce. * expr.h (memory_address_noforce): Remove prototype. * explow.c (memory_address): Remove support for flag_force_addr. (validize_mem): Same. (memory_address_noforce): Remove. * common.opt: Add dummy documentation for -fforce-addr. * combine.c (can_combine_p): Remove -fforce-addr comment. * config/cris/cris.h (OPTIMIZATION_OPTIONS): Remove set of flag_force_addr. * config/m68k/m68k.h (PIC_CASE_VECTOR_ADDRESS): Remove comment relating to memory_address_noforce. * testsuite/gcc.c-torture/compile/20050802-1.c: Remove. * testsuite/gcc.c-torture/compile/20011113-1.c: Remove. From-SVN: r130591
Steven Bosscher committed -
* omp-low.c (lookup_decl_in_outer_ctx): Allow calling this with !ctx->is_nested. (maybe_lookup_decl_in_outer_ctx): Look up in outer contexts even if !ctx->is_nested. (lower_copyprivate_clauses, lower_send_clauses, lower_send_shared_vars): Call lookup_decl_in_outer_ctx unconditionally. * testsuite/libgomp.c/private-1.c: New test. From-SVN: r130590
Jakub Jelinek committed -
PR middle-end/29749 * fold-const.c (fold_binary) <case BIT_AND_EXPR>: Optimize (X << C1) & C2 into (X << C1) & (C2 | ((1 << C1) - 1)) and (X >> C1) & C2 into (X >> C1) & (C2 | ~((type) -1 >> C1)). (fold_binary) <case LSHIFT_EXPR, case RSHIFT_EXPR>: Optimize (X & C2) << C1 into (X << C1) & (C2 << C1) and (X & C2) >> C1 into (X >> C1) & (C2 >> C1) if that allows further optimizations. * gcc.dg/fold-rotate-1.c: New test. From-SVN: r130589
Jakub Jelinek committed -
re PR tree-optimization/33453 (ICE in build2_stat, at tree.c:3110 with -ftree-parallelize-loops=4 -ftree-vectorize) PR tree-optimization/33453 * tree-data-ref.c (split_constant_offset): Use POINTER_PLUS_EXPR for pointer addition. * tree-parloops.c (canonicalize_loop_ivs): Likewise. (separate_decls_in_loop_name): Copy DECL_GIMPLE_REG_P from var to var_copy. * gcc.c-torture/compile/20071203-1.c: New test. From-SVN: r130588
Jakub Jelinek committed -
From-SVN: r130586
Tom Tromey committed -
2007-12-03 Paolo Carlini <pcarlini@suse.de> * src/hashtable.cc: New. * src/hashtable_c++0x.cc: Likewise. * src/Makefile.am: Add. * src/Makefile.in: Regenerate. * include/tr1_impl/hashtable_policy.h (struct _Primes): Remove. (_Prime_rehash_policy::_M_next_bkt, _M_bkt_for_elements, _M_need_rehash): Adjust. * config/abi/pre/gnu.ver: Update exports. * src/hash.cc: Minor tweak. From-SVN: r130585
Paolo Carlini committed -
From-SVN: r130584
Bernd Schmidt committed -
* config/bfin/bfin.h (TARGET_CPU_CPP_BUILTINS): Define __FDPIC__ as necessary. From-SVN: r130583
Bernd Schmidt committed -
2007-12-03 Robert Dewar <dewar@adacore.com> Samuel Tardieu <sam@rfc1149.net> gcc/ada/ PR ada/34287 * sem_util.adb (Safe_To_Capture_Value): Do not capture values of variables declared in a library-level package. gcc/testsuite/gnat.dg/ PR ada/34287 * check_elaboration_code.adb: New test. * bug_elaboration_code.ads, bug_elaboration_code.adb: New support files. Co-Authored-By: Samuel Tardieu <sam@rfc1149.net> From-SVN: r130582
Robert Dewar committed -
2007-12-03 Paolo Carlini <pcarlini@suse.de> * include/debug/unordered_map (operator==(const unordered_map&, const unordered_map&), operator!=(const unordered_map&, const unordered_map&), operator==(const unordered_multimap&, const unordered_multimap&), operator!=(const unordered_multimap&, const unordered_multimap&)): Remove. (unordered_map<>::unordered_map(unordered_map&&), operator=(unordered_map&&), clear, _M_invalidate_all, unordered_multimap<>::unordered_multimap(unordered_multimap&&), operator=(unordered_map&&), clear, _M_invalidate_all, swap(unordered_map<>&&, unordered_map<>&), swap(unordered_map<>&, unordered_map<>&&), swap(unordered_multimap<>&&, unordered_multimap<>&), swap(unordered_multimap<>&, unordered_multimap<>&&)): Add. * include/debug/unordered_set (operator==(const unordered_set&, const unordered_set&), operator!=(const unordered_set&, const unordered_set&), operator==(const unordered_multiset&, const unordered_multiset&), operator!=(const unordered_multiset&, const unordered_multiset&)): Remove. (unordered_set<>::unordered_set(unordered_set&&), operator=(unordered_set&&), clear, _M_invalidate_all, unordered_multiset<>::unordered_multiset(unordered_multiset&&), operator=(unordered_set&&), clear, _M_invalidate_all, swap(unordered_set<>&&, unordered_set<>&), swap(unordered_set<>&, unordered_set<>&&), swap(unordered_multiset<>&&, unordered_multiset<>&), swap(unordered_multiset<>&, unordered_multiset<>&&)): Add. * include/debug/safe_association.h (_Safe_association<>:: _Safe_association(_Safe_association&&)): Add. (_Safe_association<>::clear, _M_invalidate_all): Remove. From-SVN: r130581
Paolo Carlini committed -
2007-12-03 Razya Ladelsky <razya@il.ibm.com> * doc/invoke.texi (fipa-cp, fipa-matrix-reorg): Add documentation. From-SVN: r130580
Razya Ladelsky committed -
PR middle-end/34317 * opts.c (common_handle_option): Handle OPT_ftree_store_copy_prop. * common.opt (ftree-store-copy-prop): Use the same help text as for other nop switches. From-SVN: r130579
Jakub Jelinek committed -
From-SVN: r130577
GCC Administrator committed
-
- 02 Dec, 2007 10 commits
-
-
2007-12-02 Jerry DeLisle <jvdelisle@gcc.gnu.org> Thomas Koenig <tkoenig@gcc.gnu.org> PR libfortran/33985 * io/transfer.c (read_block, read_block_direct, write_block, write_buf): Don't seek if file position is already there for STREAM I/O. (finalize_transfer): For STREAM I/O don't flush unless the file position has moved past the start position before the transfer. Co-Authored-By: Thomas Koenig <tkoenig@gcc.gnu.org> From-SVN: r130574
Jerry DeLisle committed -
/cp 2007-12-02 Paolo Carlini <pcarlini@suse.de> PR c++/34061 * pt.c (current_template_args): Use error_operand_p. /testsuite 2007-12-02 Paolo Carlini <pcarlini@suse.de> PR c++/34061 * g++.dg/cpp0x/pr34061.C: New. From-SVN: r130573
Paolo Carlini committed -
gcc/ada/ * Makefile.in: Add support for sh4-linux. * system-linux-sh4.ads: New file. From-SVN: r130572
Samuel Tardieu committed -
clean.adb (Clean_Library_Directory): Use Empty_String'Access intead of Empty_String'Unchecked_Access. gcc/ada/ * clean.adb (Clean_Library_Directory): Use Empty_String'Access intead of Empty_String'Unchecked_Access. From-SVN: r130571
Samuel Tardieu committed -
/cp 2007-12-02 Paolo Carlini <pcarlini@suse.de> PR c++/34273 * error.c (dump_decl): Handle TREE_BINFO. /testsuite 2007-12-02 Paolo Carlini <pcarlini@suse.de> PR c++/34273 * g++.dg/other/error21.C: New. From-SVN: r130570
Paolo Carlini committed -
2007-12-02 Tobias Burnus <burnus@net-b.de> PR fortran/34186 * symbol.c (generate_isocbinding_symbol): Fix setting string length. From-SVN: r130569
Tobias Burnus committed -
2007-12-02 Matthias Klose <doko@ubuntu.com> * config-ml.in: Remove 64bit configure tests. From-SVN: r130568
Matthias Klose committed -
From-SVN: r130567
Revital Eres committed -
gcc/ * config/sh/sh.md (cmpgeusi_t): Fix condition. From-SVN: r130566
Samuel Tardieu committed -
From-SVN: r130564
GCC Administrator committed
-
- 01 Dec, 2007 8 commits
-
-
* intrinsic/stat.c (stat_i4_sub_0, stat_i8_sub_0): Mark parameter with unused attribute. * intrinsics/system_clock.c (system_clock_4, system_clock_8): Remove unused variable. * intrinsics/umask.c: Include unistd.h. From-SVN: r130561
Francois-Xavier Coudert committed -
* ggc-common.c (dump_ggc_loc_statistics): Reset ggc_force_collect flag. From-SVN: r130560
Jan Hubicka committed -
2007-12-01 Andreas Tobler <a.tobler@schweiz.org> PR libffi/31937 * src/powerpc/ffitarget.h: Introduce new ABI FFI_LINUX_SOFT_FLOAT. Add local FFI_TYPE_UINT128 to handle soft-float long-double-128. * src/powerpc/ffi.c: Distinguish between __NO_FPRS__ and not and set the NUM_FPR_ARG_REGISTERS according to. Add support for potential soft-float support under hard-float architecture. (ffi_prep_args_SYSV): Set NUM_FPR_ARG_REGISTERS to 0 in case of FFI_LINUX_SOFT_FLOAT, handle float, doubles and long-doubles according to the FFI_LINUX_SOFT_FLOAT ABI. (ffi_prep_cif_machdep): Likewise. (ffi_closure_helper_SYSV): Likewise. * src/powerpc/ppc_closure.S: Make sure not to store float/double on archs where __NO_FPRS__ is true. Add FFI_TYPE_UINT128 support. * src/powerpc/sysv.S: Add support for soft-float long-double-128. Adjust copyright notice. From-SVN: r130559
Andreas Tobler committed -
2007-12-01 Paolo Carlini <pcarlini@suse.de> * include/tr1_impl/hashtable_policy.h (struct _LessThan): Remove. (_Prime_rehash_policy::_M_bkt_for_elements, _Prime_rehash_policy:: _M_need_rehash): Adjust. From-SVN: r130558
Paolo Carlini committed -
2007-12-01 Paolo Carlini <pcarlini@suse.de> * include/bits/stl_tempbuf.h (__get_temporary_buffer): Fold in get_temporary_buffer. From-SVN: r130557
Paolo Carlini committed -
2007-12-01 Kostik Belousov <kostikbel@ukr.net> gcc/ada/ PR ada/33722 * env.c (__gnat_setenv): FreeBSD 7 has a POSIX conformant putenv() and its argument must not be free()ed. From-SVN: r130555
Kostik Belousov committed -
PR c++/8171 gcc/cp/ * typeck.c (build_binary_op): Add conversion of pointers to function members appearing as operands to the equality operators. gcc/testsuite/ * g++.dg/conversion/ptrmem9.C: New test. From-SVN: r130554
Ollie Wild committed -
From-SVN: r130552
GCC Administrator committed
-
- 30 Nov, 2007 3 commits
-
-
2007-11-30 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/34291 * gfortran.dg/namelist_41.f90: New test. From-SVN: r130549
Jerry DeLisle committed -
2007-11-30 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libfortran/34291 * io/list_read.c (read_character): When reading an unquoted string, return if special characters that could signify the end of the namelist read are encountered. From-SVN: r130548
Jerry DeLisle committed -
From-SVN: r130547
Samuel Tardieu committed
-