summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* PR fortran/47642jakub2011-02-1441-2182/+5859
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * libquadmath.texi (quadmath_snprintf): Document. (quadmath_flt128tostr): Remove. * Makefile.am (libquadmath_la_SOURCES): Add printf/*.c. Remove quadmath_io.c, gdtoa/gdtoa.c, gdtoa/g__fmt.c, gdtoa/g_Qfmt.c, gdtoa/dmisc.c and gdtoa/ulp.c. * quadmath.h (quadmath_snprintf): New prototype. (quadmath_flt128tostr): Remove. * quadmath_weak.h (quadmath_snprintf): Add. (quadmath_flt128tostr): Remove. * configure.ac: New AC_CHECK_HEADERS headers: langinfo.h, wchar.h, wctype.h, limits.h, ctype.h, printf.h, errno.h. (AC_USE_SYSTEM_EXTENSIONS): Add. (HAVE_HIDDEN_VISIBILITY, HAVE_PRINTF_HOOKS, USE_LOCALE_SUPPORT, USE_I18N_NUMBER_H): New checks. * quadmath.map (QUADMATH_1.0): Add quadmath_snprintf. Remove quadmath_flt128tostr. * printf/printf_fphex.c: New file. * printf/_itowa.h: New file. * printf/mul_n.c: New file. * printf/quadmath-printf.h: New file. * printf/submul_1.c: New file. * printf/quadmath-printf.c: New file. * printf/gmp-impl.h: New file. * printf/lshift.c: New file. * printf/fpioconst.h: New file. * printf/add_n.c: New file. * printf/cmp.c: New file. * printf/sub_n.c: New file. * printf/mul.c: New file. * printf/divrem.c: New file. * printf/addmul_1.c: New file. * printf/printf_fp.c: New file. * printf/_itoa.h: New file. * printf/fpioconst.c: New file. * printf/_i18n_number.h: New file. * printf/flt1282mpn.c: New file. * printf/rshift.c: New file. * printf/mul_1.c: New file. * quadmath_io.c: Removed. * gdtoa/gdtoa.c: Removed. * gdtoa/g__fmt.c: Removed. * gdtoa/g_Qfmt.c: Removed. * gdtoa/dmisc.c: Removed. * gdtoa/ulp.c: Removed. * config.h.in: Regenerated. * configure: Regenerated. * Makefile.in: Regenerated. * io/write_float.def (DTOAQ): Use quadmath_snprintf instead of quadmath_flt128tostr. * io/transfer128.c (tmp2): Initialize to quadmath_snprintf instead of quadmath_flt128tostr. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170135 138bc75d-0d04-0410-961f-82ee72b054a4
* make mcore use constraints.mdfroydnj2011-02-145-89/+144
| | | | | | | | | | | | | | | | | * config/mcore/constraints.md: New file. * config/mcore/mcore.md: Include it. * config/mcore/mcore.c (reg_class_from_letter): Delete. * config/mcore/mcore.h (reg_class_from_letter): Delete. (REG_CLASS_FROM_LETTER): Delete. (CONST_OK_FOR_I, CONST_OK_FOR_J, CONST_OK_FOR_L): Use insn_const_int_ok_for_constraint. (CONST_OK_FOR_K, CONST_OK_FOR_M, CONST_OK_FOR_N): Likewise. (CONST_OK_FOR_O, CONST_OK_FOR_P): Likewise. (CONST_OK_FOR_LETTER_P, CONST_DOUBLE_OK_FOR_LETTER_P): Delete. (EXTRA_CONSTRAINT): Delete. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170134 138bc75d-0d04-0410-961f-82ee72b054a4
* PR libgomp/47731jakub2011-02-143-5/+12
| | | | | | | | | * config/linux/futex.h (futex_wait): Pass NULL as timeout argument to FUTEX_WAIT futex syscall. * config/linux/wait.h: Include <futex.h> instead of "futex.h". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170133 138bc75d-0d04-0410-961f-82ee72b054a4
* PR libjava/47484: Install Python modules into versioned directorygary2011-02-143-22/+23
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170131 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-14 Richard Guenther <rguenther@suse.de>rguenth2011-02-142-1/+5
| | | | | | | * gcc.dg/attr-weak-hidden-1.c: Make definition of foo strong. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170128 138bc75d-0d04-0410-961f-82ee72b054a4
* gcc:ro2011-02-144-360/+314
| | | | | | | | | | | | | | | | | | | | | | | | | | PR ada/41929 * config/sparc/sol2-unwind.h: Include <sys/frame.h>, <sys/stack.h> (IS_SIGHANDLER): Define. (sparc64_is_sighandler): New function, split off from sparc64_fallback_frame_state. (sparc_is_sighandler): New function, split off from sparc_fallback_frame_state. (sparc64_fallback_frame_state): Merge with ... (sparc_fallback_frame_state): ... this into ... (MD_FALLBACK_FRAME_STATE_FOR): ... this. Change new_cfa to long. Remove regs_off, fpu_save_off, fpu_save. Define nframes, mctx. Use IS_SIGHANDLER, handler_args, mctx, walk stack instead of hardcoded offsets. gcc/testsuite: PR ada/41929 * gnat.dg/null_pointer_deref1.exp: Don't skip on sparc*-sun-solaris2.11. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170126 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-14 Janus Weil <janus@gcc.gnu.org>janus2011-02-144-6/+48
| | | | | | | | | | | | | | PR fortran/47349 * interface.c (get_expr_storage_size): Handle derived-type components. 2011-02-14 Janus Weil <janus@gcc.gnu.org> PR fortran/47349 * gfortran.dg/argument_checking_18.f90: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170125 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-14 Jonathan Wakely <jwakely.gcc@gmail.com>redi2011-02-143-33/+20
| | | | | | | | | * include/bits/regex_compiler.h: Remove unnecessary bind() calls. * include/bits/regex_nfa.h: Remove unnecessary base classes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170124 138bc75d-0d04-0410-961f-82ee72b054a4
* Fixes to gccgo.texi.rwild2011-02-142-2/+7
| | | | | | | | gcc/: * go/gccgo.texi (Top, Import and Export): Fix a typo and a markup nit. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170122 138bc75d-0d04-0410-961f-82ee72b054a4
* PR target/45808gerald2011-02-142-0/+8
| | | | | | | * config/freebsd-spec.h (FBSD_LIB_SPEC): Handle the shared case. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170121 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2011-02-141-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170120 138bc75d-0d04-0410-961f-82ee72b054a4
* Revert r170108, r170107, r170105, r170104, r170103, r170102, r170101, r170097.mrs2011-02-1313-2737/+2441
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170111 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-13 Tobias Burnus <burnus@net-b.de>burnus2011-02-135-28/+88
| | | | | | | | | | | | | | | PR fortran/47569 * interface.c (compare_parameter): Avoid ICE with character components. 2011-02-13 Tobias Burnus <burnus@net-b.de> * gfortran.dg/argument_checking_13.f90: Update dg-error. * gfortran.dg/argument_checking_17.f90: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170110 138bc75d-0d04-0410-961f-82ee72b054a4
* * jvspec.c (jvgenmain_spec): Remove %{a*}.jsm282011-02-132-2/+6
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170109 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/t-darwin (config/darwin.h.rebuild): Harden against parallel builds.mrs2011-02-134-7/+7
| | | | | | | | cp: * Make-lang.in (objcp/plugin/parser.h): Harden against parallel builds. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170108 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/t-darwin (build/slashify1): Harden against rebuilds.mrs2011-02-135-10/+19
| | | | | | | | | | * config/slashify.c: Nix parms to quite the build. cp: (build/slashify): Harden against rebuilds. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170107 138bc75d-0d04-0410-961f-82ee72b054a4
* Remove freebsd1 from libtool.m4 macros and config.rpath.rwild2011-02-1349-312/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | /: Import from Libtool and gnulib: 2011-01-27 Gerald Pfeifer <gerald@pfeifer.com> Prepare for supporting FreeBSD 10. * config.rpath: Remove handling of freebsd1* which soon would match FreeBSD 10.0. 2011-01-20 Gerald Pfeifer <gerald@pfeifer.com> (tiny change) Remove support for FreeBSD 1.x. * libtool.m4 (_LT_LINKER_SHLIBS) (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which soon would incorrectly match FreeBSD 10.0. boehm-gc/: * configure: Regenerate. gcc/: * configure: Regenerate. libffi/: * configure: Regenerate. libgfortran/: * Makefile.in: Regenerate. * aclocal.m4: Likewise. * configure: Likewise. libgo/: * config/libtool.m4: (_LT_LINKER_SHLIBS) (_LT_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which soon would incorrectly match FreeBSD 10.0. * configure: Regenerate. libgomp/: * configure: Regenerate. libjava/: * configure: Regenerate. * shlibpath.m4 (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which soon would incorrectly match FreeBSD 10.0. libjava/classpath/: * config.rpath, ltcf-c.sh, ltcf-gcj.sh, ltconfig: Remove handling of freebsd1* which soon would match FreeBSD 10.0. * configure: Regenerate. libjava/libltdl/: * acinclude.m4 (AC_LIBTOOL_PROG_LD_SHLIBS) (AC_LIBTOOL_SYS_DYNAMIC_LINKER): Remove handling of freebsd1* which soon would incorrectly match FreeBSD 10.0. * configure: Regenerate. libmudflap/: * configure: Regenerate. libobjc/: * configure: Regenerate. libquadmath/: * Makefile.in: Regenerate. * aclocal.m4: Likewise. * configure: Likewise. libssp/: * Makefile.in: Regenerate. * aclocal.m4: Likewise. * configure: Likewise. libstdc++-v3/: * configure: Regenerate. lto-plugin/: * Makefile.in: Regenerate. * aclocal.m4: Regenerate. * configure: Regenerate. zlib/: * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170106 138bc75d-0d04-0410-961f-82ee72b054a4
* objcp:mrs2011-02-134-21/+24
| | | | | | | | | * plugin/parser.h: Add arguments to all plugins. cp: * parser.c (cp_parser_primary_expression): Add arguments to all the plugins. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170105 138bc75d-0d04-0410-961f-82ee72b054a4
* objcp:mrs2011-02-138-10/+51
| | | | | | | | | | * plugin/lex.h: Plugify. cp: * lex.c: Plugify. * Make-lang.in (objcp/plugin/lex.h): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170104 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-13 Tobias Burnus <burnus@net-b.de>burnus2011-02-132-1/+4
| | | | | | | | * parser.c (cp_parser_declaration): Remove unused variable. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170103 138bc75d-0d04-0410-961f-82ee72b054a4
* * Make-lang.in (cp/parser.o): Move c-family/c-objc.h dependancymrs2011-02-132-3/+8
| | | | | | | down. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170102 138bc75d-0d04-0410-961f-82ee72b054a4
* gcc:mrs2011-02-139-2023/+2179
| | | | | | | | | | | | | | | | | * config/t-darwin (build/slashify): Allow others to reuse easier. objcp: * Make-lang.in (obj-c++.tags): Plugify Objective-C++. * plugin/parser.h: Likewise. * plugin/parser.c: Likewise. cp: * Make-lang.in (build/slashify): Plugify Objective-C++. (cp/parser.o): Likewise. (objcp/plugin/parser.h): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170101 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/darwin.h: Make pretty.mrs2011-02-134-414/+493
| | | | | | | | | * config/t-darwin (config/darwin.h.rebuild): Add. (build/slashify): Add. * config/slashify.c: Add. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170097 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2011-02-131-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170096 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-12 Janus Weil <janus@gcc.gnu.org>janus2011-02-128-24/+50
| | | | | | | | | | | | | | | | | | * class.c (gfc_build_class_symbol): Reject polymorphic arrays. * decl.c (build_sym,build_struct,attr_decl1): Use return value of 'gfc_build_class_symbol'. 2011-02-12 Janus Weil <janus@gcc.gnu.org> * gfortran.dg/allocate_derived_1.f90: Modified as polymorphic arrays are temporarily disabled. * gfortran.dg/class_7.f03: Ditto. * gfortran.dg/coarray_14.f90: Ditto. * gfortran.dg/typebound_proc_13.f03: Ditto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170092 138bc75d-0d04-0410-961f-82ee72b054a4
* PR driver/45731jsm282011-02-122-1/+6
| | | | | | | * gcc.c (asm_options): Correct spec matching --target-help. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170091 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-12 Paolo Carlini <paolo.carlini@oracle.com>paolo2011-02-123-1/+42
| | | | | | | | | | | PR libstdc++/47709 * include/ext/algorithm (is_heap): In C++0x mode import from namespace std. * testsuite/ext/is_heap/47709.cc: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170089 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-12 Martin Jambor <mjambor@suse.cz>jamborm2011-02-122-0/+6
| | | | | | | | | * tree-cfg.c (verify_gimple_call): Return true upon invalid argument to gimple call error. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170088 138bc75d-0d04-0410-961f-82ee72b054a4
* * gnat_ugn.texi (Compiling Different Versions of Ada): Updategerald2011-02-122-1/+6
| | | | | | | link to "Ada Issues". git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170085 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-12 Jakub Jelinek <jakub@redhat.com>redi2011-02-123-0/+39
| | | | | | | | | | | | Jonathan Wakely <jwakely.gcc@gmail.com> PR libstdc++/47662 * testsuite/17_intro/headers/c++200x/operator_names.cc: New. * testsuite/17_intro/headers/c++1998/operator_names.cc: Add comment. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170084 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-12 Paolo Carlini <paolo.carlini@oracle.com>redi2011-02-124-4/+69
| | | | | | | | | | | | | | * include/tr1/cmath (fabs): Define. * include/tr1/complex (acos, asin, atan): Avoid duplicate definitions in C++0x mode. 2011-02-12 Jonathan Wakely <jwakely.gcc@gmail.com> * testsuite/tr1/headers/c++200x/complex.cc: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170083 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/frv/frv.h (TRANSFER_FROM_TRAMPOLINE): Canonicalizemrs2011-02-122-3/+8
| | | | | | | comments in backslash regions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170078 138bc75d-0d04-0410-961f-82ee72b054a4
* gcc:iains2011-02-122-24/+115
| | | | | | | | | | | | | | | | | PR target/47324 * dwarf2out.c (output_cfa_loc): When required, apply the DWARF2_FRAME_REG_OUT macro to adjust register numbers. (output_loc_sequence): Likewise. (output_loc_operands_raw): Likewise. (output_loc_sequence_raw): Likewise. (output_cfa_loc): Likewise. (output_loc_list): Suppress register number adjustment when calling output_loc_sequence() (output_die): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170077 138bc75d-0d04-0410-961f-82ee72b054a4
* Import move-if-change script from gnulib.rwild2011-02-122-10/+76
| | | | | | | | /: PR binutils/12283 * move-if-change: Import version from gnulib. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170076 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix minor build system issues in lto-plugin.rwild2011-02-123-20/+26
| | | | | | | | | lto-plugin/: * Makefile.am (all-local): Rename from 'all'. (gcc_build_dir): Use $(host_subdir). * Makefile.in: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170075 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-12 Mikael Morin <mikael.morin@sfr.fr>mikael2011-02-122-0/+46
| | | | | | | | | PR fortran/45586 * gfortran.dg/extends_11.f03: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170074 138bc75d-0d04-0410-961f-82ee72b054a4
* Move ChangeLog entries from toplevel to config/.rwild2011-02-122-6/+9
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170073 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-12 Michael Matz <matz@suse.de>burnus2011-02-122-17/+18
| | | | | | | | | | | | | Janus Weil <janus@gcc.gnu.org> Tobias Burnus <burnus@net-b.de> PR fortran/45586 * trans-expr.c (conv_parent_component_references): Avoid unintendent skipping of parent compounds. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170072 138bc75d-0d04-0410-961f-82ee72b054a4
* * config/xtensa/xtensa.h (REGISTER_MOVE_COST, MEMORY_MOVE_COST):aesok2011-02-123-20/+43
| | | | | | | | | | Remove macros. * config/xtensa/xtensa.c (xtensa_register_move_cost, xtensa_memory_move_cost): New functions. (TARGET_REGISTER_MOVE_COST, TARGET_REGISTER_MOVE_COST): Define. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170071 138bc75d-0d04-0410-961f-82ee72b054a4
* ChangeLog:aoliva2011-02-129-28/+65
| | | | | | | | | | | | | | | | | | | | | | PR lto/47225 * Makefile.def (lto-plugin): Double dash for enable-shared. (configure-gcc): Depend on all-lto-plugin. * Makefile.in: Rebuilt. lto-plugin/ChangeLog: PR lto/47225 * Makefile.am (gcc_build_dir, in_gcc_libs): New. (liblto_plugin_la_LDFLAGS): Add -module. (copy_lto_plugin): Renamed to... ($(in_gcc_libs)): ... this. Add mkinstalldirs. Skip copying of static modules. * Makefile.in: Rebuild. gcc/ChangeLog: PR lto/47225 * configure.ac (gcc_cv_lto_plugin): Test for liblto_plugin.la in the current directory. * configure: Rebuilt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170070 138bc75d-0d04-0410-961f-82ee72b054a4
* gcc:iains2011-02-122-9/+22
| | | | | | | | | | * config/darwin.c (darwin_override_options): Add a hunk missed from the commit of r168571. Trim comment line lengths and correct indents of the preceding block. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170069 138bc75d-0d04-0410-961f-82ee72b054a4
* gcc:iains2011-02-122-0/+10
| | | | | | | | | * gcc.c (driver_handle_option): Concatenate the argument to -F with the switch. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170068 138bc75d-0d04-0410-961f-82ee72b054a4
* * common.opt (nostartfiles): New Driver option.jsm282011-02-122-0/+7
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170067 138bc75d-0d04-0410-961f-82ee72b054a4
* Daily bump.gccadmin2011-02-121-1/+1
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170066 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix PR47707davidxl2011-02-124-3/+44
| | | | git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170062 138bc75d-0d04-0410-961f-82ee72b054a4
* PR tree-optimization/47420ebotcazou2011-02-114-4/+92
| | | | | | | * ipa-split.c (visit_bb): Punt on any kind of GIMPLE_RESX. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170061 138bc75d-0d04-0410-961f-82ee72b054a4
* 2011-02-11 Tobias Burnus <burnus@net-b.de>burnus2011-02-114-8/+51
| | | | | | | | | | | | | | | PR fortran/47550 * resolve.c (resolve_formal_arglist): PURE with VALUE and no INTENT: Add -std= diagnostics. 2011-02-11 Tobias Burnus <burnus@net-b.de> PR fortran/47550 * gfortran.dg/pure_formal_2.f90: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170060 138bc75d-0d04-0410-961f-82ee72b054a4
* PR rtl-optimization/47614pthaugen2011-02-116-1/+58
| | | | | | | | | | | | | * rtl.h (check_for_inc_dec): Declare. * dse.c (check_for_inc_dec): Externalize... * postreload.c (reload_cse_simplify): ...use it before deleting stmt. (reload_cse_simplify_operands): Don't simplify opnds with side effects. * testsuite/gfortran.dg/pr47614.f: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170059 138bc75d-0d04-0410-961f-82ee72b054a4
* Fix typo in toplevel configure.ac: PPL error message.rwild2011-02-113-2/+7
| | | | | | | | /: * configure.ac: Remove extra bracket. * configure: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170058 138bc75d-0d04-0410-961f-82ee72b054a4
* PR driver/47678jsm282011-02-115-6/+29
| | | | | | | | | | | | | * gcc.c (main): Do not compile inputs if there were errors in option handling. * opts-common.c (read_cmdline_option): Check for wrong language after other error checks. testsuite: * gcc.dg/opts-6.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170056 138bc75d-0d04-0410-961f-82ee72b054a4
OpenPOWER on IntegriCloud