OSDN Git Service

pf3gnuchains/gcc-fork.git
11 years agocompiler: Add -fgo-pkgpath option.
ian [Wed, 9 May 2012 23:30:17 +0000 (23:30 +0000)]
compiler: Add -fgo-pkgpath option.

* lang.opt: Add -fgo-pkgpath.
* go-lang.c (go_pkgpath): New static variable.
(go_prefix): New static variable.
(go_langhook_init): Pass go_pkgpath and go_prefix to
go_create_gogo.
(go_langhook_handle_option): Handle -fgo-pkgpath.  Change
-fgo-prefix handling to just set go_prefix.
* go-c.h (go_set_prefix): Don't declare.
(go_create_gogo): Add pkgpath and prefix to declaration.
* go-gcc.cc (Gcc_backend::global_variable): Change unique_prefix
to pkgpath.  Don't include the package name in the asm name.
* gccgo.texi (Invoking gccgo): Document -fgo-pkgpath.  Update the
docs for -fgo-prefix.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187357 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago Backport from 2012-05-12 mainline r187342.
gjl [Wed, 9 May 2012 16:39:33 +0000 (16:39 +0000)]
Backport from 2012-05-12 mainline r187342.
PR target/53256
* config/avr/elf.h (ASM_DECLARE_FUNCTION_NAME): Remove.
* config/avr/avr-protos.h (avr_asm_declare_function_name): Remove.
* config/avr/avr.h (struct machine_function): Add attributes_checked_p.
* config/avr/avr.c (avr_asm_declare_function_name): Remove.
(expand_prologue): Move initialization of cfun->machine->is_naked,
is_interrupt, is_signal, is_OS_task, is_OS_main from here to...
(avr_set_current_function): ...this new static function.
(TARGET_SET_CURRENT_FUNCTION): New define.
(avr_function_ok_for_sibcall): Use cfun->machine->is_* instead of
checking attributes of current_function_decl.
(avr_regs_to_save): Ditto.
(signal_function_p): Rename to avr_signal_function_p.
(interrupt_function_p): Rename to avr_interrupt_function_p.
* doc/extend.texi (Function Attributes): Better explanation of
'interrupt' and 'signal' for AVR. Move 'ifunc' down to establish
alphabetical order.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187343 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-09 Matthias Klose <doko@ubuntu.com>
doko [Wed, 9 May 2012 16:02:34 +0000 (16:02 +0000)]
2012-05-09  Matthias Klose  <doko@ubuntu.com>

        * gcc-ar.c (main): Don't check for execute bits for the plugin.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187339 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Wed, 9 May 2012 00:18:27 +0000 (00:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187306 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR target/53272
hp [Tue, 8 May 2012 15:27:58 +0000 (15:27 +0000)]
PR target/53272
* gcc.dg/torture/pr53272-1.c, gcc.dg/torture/pr53272-2.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187286 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR target/53272
hp [Tue, 8 May 2012 15:27:03 +0000 (15:27 +0000)]
PR target/53272
* config/cris/cris.c (cris_normal_notice_update_cc): For TARGET_V32,
when a constant source operand matches an "I" constraint, the "no
CC0 change" applies to a register-destination only, not a
strict_low_part-destination.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187285 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-07 Ramana Radhakrishnan <ramana.radhakrishnan@linaro.org>
ramana [Tue, 8 May 2012 10:57:58 +0000 (10:57 +0000)]
2012-05-07  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>

Backport from mainline:
2012-04-19  Ramana Radhakrishnan  <ramana.radhakrishnan@linaro.org>

* config/arm/sync.md (sync_optab): Change ior attribute to "or".

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187278 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Tue, 8 May 2012 00:17:50 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187274 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: fix an ICE when parsing 0xdie, reject token 0x123i.
ian [Mon, 7 May 2012 18:53:44 +0000 (18:53 +0000)]
compiler: fix an ICE when parsing 0xdie, reject token 0x123i.

The lexer used to incorrectly accept a token like 0x123i
and interpreted it as 123i. It also used to die when encountering
0xdie.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187267 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: fix ICE in handling of rune constants.
ian [Mon, 7 May 2012 18:37:00 +0000 (18:37 +0000)]
compiler: fix ICE in handling of rune constants.

This patch corrects an ICE in handling on constant expressions
such as

const r = ^'a'

Part of issue 9.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187265 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: reject NOT operator on integer types.
ian [Mon, 7 May 2012 18:24:32 +0000 (18:24 +0000)]
compiler: reject NOT operator on integer types.

The Go specification only accepts the NOT operator on boolean
types.

Fixes issue 10.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187263 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR tree-optimization/53239
jakub [Mon, 7 May 2012 13:33:27 +0000 (13:33 +0000)]
PR tree-optimization/53239
* tree-vrp.c (get_value_range): Set VR of
SSA_NAME_IS_DEFAULT_DEF of DECL_BY_REFERENCE RESULT_DECL
to nonnull.

* g++.dg/opt/vrp3.C: New test.
* g++.dg/opt/vrp3-aux.cc: New file.
* g++.dg/opt/vrp3.h: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187241 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-07 Richard Guenther <rguenther@suse.de>
rguenth [Mon, 7 May 2012 13:00:39 +0000 (13:00 +0000)]
2012-05-07  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/53195
* tree-inline.c (setup_one_parameter): Properly add referenced
vars from the parameters new known value.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187237 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-07 Tobias Burnus <burnus@net-b.de>
burnus [Mon, 7 May 2012 11:50:04 +0000 (11:50 +0000)]
2012-05-07  Tobias Burnus  <burnus@net-b.de>

        Backport from mainline:
        2012-05-07  Tobias Burnus  <burnus@net-b.de>

        PR fortran/53255
        * resolve.c (resolve_typebound_static): Fix handling
        of overridden specific to generic operator.

2012-05-07  Tobias Burnus  <burnus@net-b.de>

        Backport from mainline:
        2012-05-07  Tobias Burnus  <burnus@net-b.de>

        PR fortran/53255
        * gfortran.dg/typebound_operator_15.f90: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187232 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Mon, 7 May 2012 00:18:16 +0000 (00:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187222 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago Backport from mainline:
danglin [Sun, 6 May 2012 20:50:06 +0000 (20:50 +0000)]
Backport from mainline:
2012-04-27  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>

PR target/52999
* config/pa/pa.c (pa_legitimate_constant_p): Don't put function labels
in constant pool.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187216 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agogcc/ada/
ebotcazou [Sun, 6 May 2012 09:27:25 +0000 (09:27 +0000)]
gcc/ada/
Revert
2012-02-24  Dave Korn  <dave.korn.cygwin@gmail.com>

* gcc-interface/Makefile.in (WIN_SO_PREFIX [windows targets]): New
Windows-specific make variable.
(WIN_SO_INSTALL_DIR [windows targets]): Likewise.
(install-gnatlib): Respect the above during installation when set,
and also install any windows import library that has been built.
(gnatlib-shared-win32): Use WIN_SO_PREFIX to name output DLL and also
build a corresponding import library.
libada/
Revert
2012-02-24  Dave Korn  <dave.korn.cygwin@gmail.com>

* Makefile.in (bindir): Import from autoconf and pass down to submake.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187205 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Sun, 6 May 2012 00:17:51 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187202 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-05 Tobias Burnus <burnus@net-b.de>
burnus [Sat, 5 May 2012 09:53:21 +0000 (09:53 +0000)]
2012-05-05  Tobias Burnus  <burnus@net-b.de>

        Backport from mainline:
        2012-05-04  Tobias Burnus  <burnus@net-b.de>

        PR fortran/53111
        * resolve.c (resolve_fl_derived): Fix -std=f95
        diagnostic for generic vs. DT names.

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

        Backport from mainline:
        2012-05-04  Tobias Burnus  <burnus@net-b.de>

        PR fortran/53111
        * gfortran.dg/constructor_7.f90: New.
        * gfortran.dg/constructor_8.f90: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187193 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Sat, 5 May 2012 00:17:56 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187187 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago * tree-vect-patterns.c (vect_single_imm_use): Correct return
ian [Fri, 4 May 2012 20:59:13 +0000 (20:59 +0000)]
* tree-vect-patterns.c (vect_single_imm_use): Correct return
values from false to NULL.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187182 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Correct parse of for with possible composite literal.
ian [Fri, 4 May 2012 19:33:29 +0000 (19:33 +0000)]
compiler: Correct parse of for with possible composite literal.

Fixes, e.g., "for first := true; first; first = false {".

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187177 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago Backport from mainline
uros [Fri, 4 May 2012 16:58:16 +0000 (16:58 +0000)]
Backport from mainline
2012-05-04  Uros Bizjak  <ubizjak@gmail.com>

PR target/53228
* config/i386/i386.h (X86_ARCH_CMOV): Rename from X86_ARCH_CMOVE.
(TARGET_CMOV): Rename from TARGET_CMOVE.
(TARGET_CMOVE): New define.
* config/i386/i386.c (ix86_option_override_internal): Use TARGET_CMOV.
Do not set TARGET_CMOVE here.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187169 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agolibgo: Update to Go 1.0.1 release.
ian [Fri, 4 May 2012 15:01:31 +0000 (15:01 +0000)]
libgo: Update to Go 1.0.1 release.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187164 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-04 Ulrich Weigand <ulrich.weigand@linaro.org>
uweigand [Fri, 4 May 2012 14:56:48 +0000 (14:56 +0000)]
2012-05-04  Ulrich Weigand  <ulrich.weigand@linaro.org>

  Backport from mainline:

  2012-05-04  Ulrich Weigand  <ulrich.weigand@linaro.org>

  PR tree-optimization/52633
  * tree-vect-patterns.c (vect_vect_recog_func_ptrs): Swap order of
  vect_recog_widen_shift_pattern and vect_recog_over_widening_pattern.
  (vect_recog_over_widening_pattern): Remove handling of code that was
  already detected as over-widening pattern.  Remove special handling
  of "unsigned" cases.  Instead, support general case of conversion
  of the shift result to another type.

  2012-05-04  Ulrich Weigand  <ulrich.weigand@linaro.org>

  * tree-vect-patterns.c (vect_single_imm_use): New function.
  (vect_recog_widen_mult_pattern): Use it instead of open-coding loop.
  (vect_recog_over_widening_pattern): Likewise.
  (vect_recog_widen_shift_pattern): Likewise.

  2012-04-10  Ulrich Weigand  <ulrich.weigand@linaro.org>

  PR tree-optimization/52870
  * tree-vect-patterns.c (vect_recog_widen_mult_pattern): Verify that
  presumed pattern statement is within the same loop or basic block.

2012-05-04  Ulrich Weigand  <ulrich.weigand@linaro.org>

  Backport from mainline:

  2012-05-04  Ulrich Weigand  <ulrich.weigand@linaro.org>

  PR tree-optimization/52633
  * gcc.dg/vect/vect-over-widen-1.c: Two patterns should now be
  recognized as widening shifts instead of over-widening.
  * gcc.dg/vect/vect-over-widen-1-big-array.c: Likewise.
  * gcc.dg/vect/vect-over-widen-4.c: Likewise.
  * gcc.dg/vect/vect-over-widen-4-big-array.c: Likewise.
  * gcc.target/arm/pr52633.c: New test.

  2012-04-10  Ulrich Weigand  <ulrich.weigand@linaro.org>

  PR tree-optimization/52870
  * gcc.dg/vect/pr52870.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187162 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-04 Richard Guenther <rguenther@suse.de>
rguenth [Fri, 4 May 2012 11:34:25 +0000 (11:34 +0000)]
2012-05-04  Richard Guenther  <rguenther@suse.de>

* common.opt (flto-report): Do not mark as Optimization.

lto/
* lang.opt (fwpa): Do not mark as Optimization.
(fltrans): Likewise.

* gcc.dg/lto/pr53214_0.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187154 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR target/48496
ebotcazou [Fri, 4 May 2012 11:13:20 +0000 (11:13 +0000)]
PR target/48496
* recog.c (constrain_operands): If extra constraints are present, also
accept pseudo-registers with equivalent memory locations during reload.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187152 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoRemove svn:mergeinfo property.
jakub [Fri, 4 May 2012 06:50:44 +0000 (06:50 +0000)]
Remove svn:mergeinfo property.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187144 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Error if importing same package twice with same name.
ian [Fri, 4 May 2012 05:24:17 +0000 (05:24 +0000)]
compiler: Error if importing same package twice with same name.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187143 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago[gcc]
meissner [Fri, 4 May 2012 00:28:17 +0000 (00:28 +0000)]
[gcc]
2012-05-03  Michael Meissner  <meissner@linux.vnet.ibm.com>

PR target/53199
* config/rs6000/rs6000.md (bswapdi splitters): If
-mavoid-indexed-addresses (or -mcpu=power6 which sets it by
default) is used, generate an alternate sequence that does not
depend on using indexed addressing.

[gcc/testsuite]
2012-05-03  Michael Meissner  <meissner@linux.vnet.ibm.com>

PR target/53199
* gcc.target/powwerpc/pr53199.c: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187132 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Fri, 4 May 2012 00:17:45 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187130 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoFix long double float miscompilations on sparc 64-bit.
davem [Thu, 3 May 2012 22:34:34 +0000 (22:34 +0000)]
Fix long double float miscompilations on sparc 64-bit.

PR target/52684
* config/sparc/sparc.c (emit_soft_tfmode_libcall): If we pass a
MEM directly into a libcall, mark it's MEM_EXPR as addressable.
(sparc_emit_float_lib_cmp): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187124 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Build import tables as needed for imported interfaces.
ian [Thu, 3 May 2012 17:42:14 +0000 (17:42 +0000)]
compiler: Build import tables as needed for imported interfaces.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187112 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-03 Martin Jambor <mjambor@suse.cz>
jamborm [Thu, 3 May 2012 17:00:32 +0000 (17:00 +0000)]
2012-05-03  Martin Jambor  <mjambor@suse.cz>

PR lto/52605
* dwarf2out.c (dwarf2out_decl): Only lookup die representing context
of a variable when the contect is a function.

* gcc/testsuite/g++.dg/lto/pr52605_0.C: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187109 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Fix order of initialization bug with global var a, b = f().
ian [Thu, 3 May 2012 16:09:44 +0000 (16:09 +0000)]
compiler: Fix order of initialization bug with global var a, b = f().

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187104 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago/cp
paolo [Thu, 3 May 2012 14:32:15 +0000 (14:32 +0000)]
/cp
2012-05-03  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/53186
* call.c (build_over_call): Handle final member functions
and class types.
(build_new_method_call_1): Do not handle here.

/testsuite
2012-05-03  Paolo Carlini  <paolo.carlini@oracle.com>

PR c++/53186
* g++.dg/other/final2.C: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187098 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR plugins/53126
jakub [Thu, 3 May 2012 11:09:46 +0000 (11:09 +0000)]
PR plugins/53126
* gcc-ar.c (main): If GCC_EXEC_PREFIX is set in env,
append program name to it and pass that as first argument
to make_relative_prefix.  Always pass standard_libexec_prefix
as last argument to make_relative_prefix.  If
make_relative_prefix returns NULL, fall back to
standard_libexec_prefix.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187091 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR debug/53174
jakub [Thu, 3 May 2012 10:19:29 +0000 (10:19 +0000)]
PR debug/53174
* tree-predcom.c (remove_stmt): Call reset_debug_uses on stmts being
removed.

* gcc.dg/pr53174.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187088 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR target/53187
jakub [Thu, 3 May 2012 10:17:02 +0000 (10:17 +0000)]
PR target/53187
* config/arm/arm.c (arm_select_cc_mode): If x has MODE_CC class
mode, return that mode.

* gcc.target/arm/pr53187.c: New test.
* gcc.c-torture/compile/pr53187.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187086 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-03 Richard Guenther <rguenther@suse.de>
rguenth [Thu, 3 May 2012 08:49:03 +0000 (08:49 +0000)]
2012-05-03  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/53144
* tree-ssa-sccvn.c (vn_reference_lookup_or_insert_constant_for_pieces):
Rename to ...
(vn_reference_lookup_or_insert_for_pieces): ... this.  Properly deal
with SSA name values.
(vn_reference_lookup_3): Adjust callers.

* gcc.dg/torture/pr53144.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187080 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Thu, 3 May 2012 00:17:57 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187071 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-02 Paolo Carlini <paolo.carlini@oracle.com>
paolo [Wed, 2 May 2012 17:16:33 +0000 (17:16 +0000)]
2012-05-02  Paolo Carlini  <paolo.carlini@oracle.com>

PR libstdc++/53193
* testsuite/23_containers/unordered_set/instantiation_neg.cc: Adjust
dg-error line number.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187057 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-02 Tobias Burnus <burnus@net-b.de>
burnus [Wed, 2 May 2012 12:51:49 +0000 (12:51 +0000)]
2012-05-02  Tobias Burnus  <burnus@net-b.de>

        Backport from mainline
        2012-04-12  Tobias Burnus  <burnus@net-b.de>

        PR fortran/52864
        * expr.c (gfc_check_vardef_context): Fix assignment check for
        pointer components.

2012-05-02  Tobias Burnus  <burnus@net-b.de>

        Backport from mainline
        2012-04-16  Tobias Burnus  <burnus@net-b.de>

        PR fortran/52864
        * gfortran.dg/pointer_intent_6.f90: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187044 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR tree-optimization/53163
jakub [Wed, 2 May 2012 09:56:39 +0000 (09:56 +0000)]
PR tree-optimization/53163
* tree-ssa-phiopt.c (cond_if_else_store_replacement): Don't ignore
return value from compute_all_dependences.

* gcc.c-torture/compile/pr53163.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187039 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR rtl-optimization/53160
jakub [Wed, 2 May 2012 07:19:41 +0000 (07:19 +0000)]
PR rtl-optimization/53160
* ree.c (combine_reaching_defs): Handle the case where cand->insn
has been modified by ree pass already.

* gcc.c-torture/execute/pr53160.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187036 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Wed, 2 May 2012 00:17:56 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187033 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-05-01 François Dumont <fdumont@gcc.gnu.org>
fdumont [Tue, 1 May 2012 19:38:28 +0000 (19:38 +0000)]
2012-05-01  François Dumont  <fdumont@gcc.gnu.org>

PR libstdc++/53115
* include/bits/hashtable.h
(_Hashtable<>::_M_rehash_aux(size_type, false_type)): Fix buckets
after insertion of several equivalent elements.
* testsuite/23_containers/unordered_multiset/insert/53115.cc: New.
* testsuite/23_containers/unordered_multimap/insert/53115.cc: New.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187023 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago Backport from mainline
uros [Tue, 1 May 2012 06:23:13 +0000 (06:23 +0000)]
Backport from mainline
2012-04-30  Uros Bizjak  <ubizjak@gmail.com>

PR middle-end/53136
* ipa-prop.c (ipa_print_node_jump_functions): Wrap multiple
calls to cgraph_node_name in xstrdup.
(ipa_make_edge_direct_to_target): Ditto.
* tree-sra.c (convert_callers_for_node): Ditto.
* lto-symtab.c (lto_cgraph_replace_node): Ditto.
* ipa-cp.c (perhaps_add_new_callers): Ditto.
* cgraphunit.c (cgraph_redirect_edge_call_stmt_to_callee): Ditto.
(cgraph_materialize_all_clones): Ditto.
* ipa-inline.c (report_inline_failed_reason): Ditto.
(want_early_inline_function_p): Ditto.
(edge_badness): Ditto.
(update_edge_key): Ditto.
(flatten_function): Ditto.
(ipa_inline): Ditto.
(inline_always_inline_functions): Ditto.
(early_inline_small_functions): Ditto.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187011 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Tue, 1 May 2012 00:18:49 +0000 (00:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@187006 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-04-30 Thomas Koenig <tkoenig@gcc.gnu.org>
tkoenig [Mon, 30 Apr 2012 19:31:13 +0000 (19:31 +0000)]
2012-04-30  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/53148
Backport from trunk
* frontend-passes.c (create_var):  If the statement has a label,
put the label around the block.

2012-04-30  Thomas Koenig  <tkoenig@gcc.gnu.org>

PR fortran/53148
Backport from trunk
* gfortran.dg/function_optimize_12.f90:  New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186999 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-04-30 Andreas Tobler <andreast@fgznet.ch>
andreast [Mon, 30 Apr 2012 17:40:34 +0000 (17:40 +0000)]
2012-04-30  Andreas Tobler  <andreast@fgznet.ch>

Backport from mainline
2012-03-21  Andreas Tobler  <andreast@fgznet.ch>

* testsuite/23_containers/vector/bool/modifiers/insert/31370.cc:
Skip this test on powerpc64-*-freebsd*.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186997 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-04-30 Andreas Tobler <andreast@fgznet.ch>
andreast [Mon, 30 Apr 2012 17:39:57 +0000 (17:39 +0000)]
2012-04-30  Andreas Tobler  <andreast@fgznet.ch>

Backport from mainline
2012-03-21  Andreas Tobler  <andreast@fgznet.ch>

* config.host: Add bits to support powerpc64-*-freebsd*.
* config/rs6000/freebsd-unwind.h: New file.
* config/rs6000/t-freebsd64: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186996 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-04-30 Andreas Tobler <andreast@fgznet.ch>
andreast [Mon, 30 Apr 2012 17:39:01 +0000 (17:39 +0000)]
2012-04-30  Andreas Tobler  <andreast@fgznet.ch>

Backport from mainline
2012-03-21  Andreas Tobler  <andreast@fgznet.ch>

* configure.ac (HAVE_LD_NO_DOT_SYMBOLS): Add powerpc64-*-freebsd*.
Introduce emul_name to select the right linker emulation for
powerpc64-*-freebsd*.
* configure: Regenerate.
* config.gcc: Add bits to support powerpc64-*-freebsd*.
* config/rs6000/freebsd.h (POWERPC_FREEBSD): Define.
* config/rs6000/freebsd64.h: New file.
* config/rs6000/rs6000.c (rs6000_option_override_internal): Use
POWERPC_FREEBSD.
(rs6000_savres_strategy): Likewise.
(rs6000_savres_routine_name): Likewise.
(rs6000_elf_file_end): Likewise.
* config/rs6000/t-freebsd64: New file.
* config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS): Set the
rs6000_current_abi for 64-bit FreeBSD to ABI_AIX.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186995 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR go/52586
ian [Mon, 30 Apr 2012 16:04:33 +0000 (16:04 +0000)]
PR go/52586
mksysinfo, syscall: Make sure SYS_GETDENTS64 is defined.

Fixes build on MIPS GNU/Linux.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186987 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago Backport from mainline
uros [Mon, 30 Apr 2012 08:57:41 +0000 (08:57 +0000)]
Backport from mainline
2012-04-27  Paolo Bonzini  <bonzini@gnu.org>

PR target/53138
* config/i386/i386.md (x86_mov<mode>cc_0_m1_neg): Add clobber.

testsuite/ChangeLog:

Backport from mainline
2012-04-27  Paolo Bonzini  <bonzini@gnu.org>

PR target/53138
* gcc.c-torture/execute/20120427-1.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186962 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago * config/i386/i386.c (ix86_handle_struct_attribute): Use the proper
ebotcazou [Mon, 30 Apr 2012 08:11:57 +0000 (08:11 +0000)]
* config/i386/i386.c (ix86_handle_struct_attribute): Use the proper
predicate to discriminate types.
ada/
* gcc-interface/utils.c (finish_record_type): Force the traditional GCC
layout for bitfields on the type if it is packed or has a representation
clause and an alternate layout is available.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186959 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Mon, 30 Apr 2012 00:18:16 +0000 (00:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186951 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Sun, 29 Apr 2012 00:18:26 +0000 (00:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186937 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agolibgcc/
rsandifo [Sat, 28 Apr 2012 08:07:03 +0000 (08:07 +0000)]
libgcc/
2012-04-28  Aurelien Jarno  <aurelien@aurel32.net>

* config.host (mips64*-*-linux*, mipsisa64*-*-linux*): Remove.
(mips*-*-linux*): Include mips/t-tpbit when long double is
16 bytes long.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186932 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Fix some crashes on invalid code.
ian [Sat, 28 Apr 2012 04:57:11 +0000 (04:57 +0000)]
compiler: Fix some crashes on invalid code.

Fixes issue 7.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186930 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Use less memory for array/slice literals.
ian [Sat, 28 Apr 2012 00:29:34 +0000 (00:29 +0000)]
compiler: Use less memory for array/slice literals.

Fixes issue 8 in gofrontend issues list.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186927 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Sat, 28 Apr 2012 00:18:00 +0000 (00:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186924 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR go/52358
ian [Fri, 27 Apr 2012 16:38:31 +0000 (16:38 +0000)]
PR go/52358
configure, runtime: Provide i386 long double math functions if needed.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186916 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR go/52358
ian [Fri, 27 Apr 2012 16:33:01 +0000 (16:33 +0000)]
PR go/52358
math: Work around bug in Solaris 9 implementation of ldexp.

The bug is that ldexp(-1, -1075) should return -0, but the
Solaris 9 implementation returns +0.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186914 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoruntime: Correct syscall.Setenv for systems that don't have setenv.
ian [Fri, 27 Apr 2012 16:28:43 +0000 (16:28 +0000)]
runtime: Correct syscall.Setenv for systems that don't have setenv.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186912 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agofix typo
gjl [Fri, 27 Apr 2012 11:00:44 +0000 (11:00 +0000)]
fix typo

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186900 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR c/51527
gjl [Fri, 27 Apr 2012 10:51:58 +0000 (10:51 +0000)]
PR c/51527
* convert.c (convert_to_integer): Avoid infinte recursion for
target-defined built-in types.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186899 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Fri, 27 Apr 2012 00:17:48 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186891 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agomksysinfo, net: Always define syscall.SO_REUSEPORT.
ian [Thu, 26 Apr 2012 04:26:17 +0000 (04:26 +0000)]
mksysinfo, net: Always define syscall.SO_REUSEPORT.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186858 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Thu, 26 Apr 2012 00:18:05 +0000 (00:18 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186853 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR target/53120
hp [Wed, 25 Apr 2012 23:24:48 +0000 (23:24 +0000)]
PR target/53120
* gcc.dg/torture/pr53120.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186849 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR target/53120
hp [Wed, 25 Apr 2012 23:23:34 +0000 (23:23 +0000)]
PR target/53120
* config/cris/cris.md ("*andhi_lowpart_v32")
("*andqi_lowpart_v32"): Change first input-only operand from
a (match_operand ...) to (match_dup 0).  Drop alternatives with
const_int-matching constraints for redundancy.
("*andhi_lowpart_non_v32", "*andqi_lowpart_non_v32"): Ditto.  Drop
three-operand alternative.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186848 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago Backport from mainline
uros [Wed, 25 Apr 2012 22:10:17 +0000 (22:10 +0000)]
Backport from mainline
2012-04-23  Uros Bizjak  <ubizjak@gmail.com>

* config/i386/i386.md (*add<mode>_2): Add r/r/0 alternative.
(*addsi_2_zext): Ditto.
(*add<mode>_3): Ditto.
(*addsi_3_zext): Ditto.
(*add<mode>_5): Ditto.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186842 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago * include/std/scoped_allocator (scoped_allocator::__outermost): Do
redi [Wed, 25 Apr 2012 21:53:20 +0000 (21:53 +0000)]
* include/std/scoped_allocator (scoped_allocator::__outermost): Do
not pass non-POD to varargs function.
* testsuite/20_util/scoped_allocator/1.cc: Fix test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186841 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-04-23 Andrew Haley <aph@redhat.com>
aph [Wed, 25 Apr 2012 10:18:38 +0000 (10:18 +0000)]
2012-04-23  Andrew Haley  <aph@redhat.com>

* defineclass.cc (MAJOR_1_7,  MINOR_1_7): New.
(parse): Allow MAJOR_1_7 classfile version.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186810 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR c/52880
jakub [Wed, 25 Apr 2012 09:18:49 +0000 (09:18 +0000)]
PR c/52880
* c-typeck.c (set_nonincremental_init,
set_nonincremental_init_from_string): Pass true instead of false
as IMPLICIT to add_pending_init.

* gcc.dg/pr52880.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186809 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR go/52341
ian [Wed, 25 Apr 2012 04:41:13 +0000 (04:41 +0000)]
PR go/52341

crypto/rand: Use io.ReadFull when reading from /dev/urandom.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186804 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR go/52583
ian [Wed, 25 Apr 2012 04:26:31 +0000 (04:26 +0000)]
PR go/52583

net: Solaris fixes.

In particular fix fd_select.go to handle the case where a file
descriptor is closed by one goroutine while another goroutine
is waiting for it.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186802 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Wed, 25 Apr 2012 00:17:41 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186792 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago * vi.po: Update.
jsm28 [Tue, 24 Apr 2012 22:16:46 +0000 (22:16 +0000)]
* vi.po: Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186787 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago * sv.po: Update.
jsm28 [Tue, 24 Apr 2012 22:15:15 +0000 (22:15 +0000)]
* sv.po: Update.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186785 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agogotest: Remove race in use of ../testdata.
ian [Tue, 24 Apr 2012 20:13:22 +0000 (20:13 +0000)]
gotest: Remove race in use of ../testdata.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186782 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agomksysinfo: Only define PathMax if PATH_MAX is defined.
ian [Tue, 24 Apr 2012 19:12:38 +0000 (19:12 +0000)]
mksysinfo: Only define PathMax if PATH_MAX is defined.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186779 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR testsuite/52641
gjl [Tue, 24 Apr 2012 17:08:20 +0000 (17:08 +0000)]
PR testsuite/52641
PR tree-optimizations/52891
* gcc.c-torture/compile/pr52891-2.c: Fix test for 16-bit int.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186775 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Fix order of evalation for m[0] = len(m) when m is a map.
ian [Tue, 24 Apr 2012 16:25:06 +0000 (16:25 +0000)]
compiler: Fix order of evalation for m[0] = len(m) when m is a map.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186773 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago Backport from 2012-04-24 mainline r186768.
gjl [Tue, 24 Apr 2012 15:23:46 +0000 (15:23 +0000)]
Backport from 2012-04-24 mainline r186768.
PR target/53065
* config/avr/avr.h (HARD_REGNO_CALL_PART_CLOBBERED): New hook define.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186770 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Reject invalid composite literals.
ian [Tue, 24 Apr 2012 14:54:32 +0000 (14:54 +0000)]
compiler: Reject invalid composite literals.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186767 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-04-24 Richard Guenther <rguenther@suse.de>
rguenth [Tue, 24 Apr 2012 14:42:53 +0000 (14:42 +0000)]
2012-04-24  Richard Guenther  <rguenther@suse.de>

PR tree-optimization/53085
* tree-ssa-pre.c (eliminate): Do not eliminate volatile redundant
stores.

* g++.dg/torture/pr53085.C: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186765 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR middle-end/53084
jakub [Tue, 24 Apr 2012 06:10:53 +0000 (06:10 +0000)]
PR middle-end/53084
* varasm.c (compute_reloc_for_constant): Handle ADDR_EXPR
of MEM_REF.
(output_addressed_constants): Likewise.

* gcc.c-torture/execute/pr53084.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186745 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR middle-end/52999
jakub [Tue, 24 Apr 2012 06:08:55 +0000 (06:08 +0000)]
PR middle-end/52999
* varasm.c (get_section): Don't ICE for section conflicts with
built-in section kinds.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186743 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Error for invalid use of ... in call.
ian [Tue, 24 Apr 2012 05:55:42 +0000 (05:55 +0000)]
compiler: Error for invalid use of ... in call.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186740 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agoDaily bump.
gccadmin [Tue, 24 Apr 2012 00:17:41 +0000 (00:17 +0000)]
Daily bump.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186733 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago * go-lang.c (go_langhook_init): Set MPFR precision to 256.
ian [Mon, 23 Apr 2012 21:39:25 +0000 (21:39 +0000)]
* go-lang.c (go_langhook_init): Set MPFR precision to 256.

time: Adjust float expression so that it first integer context.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186728 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agocompiler: Correct handling of negative zero floating constant.
ian [Mon, 23 Apr 2012 20:49:47 +0000 (20:49 +0000)]
compiler: Correct handling of negative zero floating constant.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186723 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago * config/rs6000/sync.md (fetchop_name): Change ior attribute to "or".
dje [Mon, 23 Apr 2012 17:12:55 +0000 (17:12 +0000)]
    * config/rs6000/sync.md (fetchop_name): Change ior attribute to "or".

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186717 138bc75d-0d04-0410-961f-82ee72b054a4

11 years agolibgo: Make sure log/syslog subdirectory exists before using it.
ian [Mon, 23 Apr 2012 17:03:11 +0000 (17:03 +0000)]
libgo: Make sure log/syslog subdirectory exists before using it.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186716 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-04-23 Chris Jefferson <chris@bubblescope.net>
paolo [Mon, 23 Apr 2012 15:24:44 +0000 (15:24 +0000)]
2012-04-23  Chris Jefferson  <chris@bubblescope.net>

PR testsuite/53046
* testsuite/25_algorithms/stable_partition/mem_check.cc: Fix size
of array A.
* testsuite/25_algorithms/stable_sort/mem_check.cc: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186713 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago * doc/extend.texi (AVR Named Address Spaces): Fix typos.
gjl [Mon, 23 Apr 2012 10:25:52 +0000 (10:25 +0000)]
* doc/extend.texi (AVR Named Address Spaces): Fix typos.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186699 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago2012-04-23 Richard Guenther <rguenther@suse.de>
rguenth [Mon, 23 Apr 2012 10:24:14 +0000 (10:24 +0000)]
2012-04-23  Richard Guenther  <rguenther@suse.de>

PR c/53060
* c-typeck.c (build_binary_op): Fix typo.

* gcc.dg/pr53060.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186698 138bc75d-0d04-0410-961f-82ee72b054a4

11 years ago PR tree-optimizations/52891
jakub [Mon, 23 Apr 2012 10:16:57 +0000 (10:16 +0000)]
PR tree-optimizations/52891
* tree-vect-patterns.c (adjust_bool_pattern): Use
build_nonstandard_type even if rhs1 has unsigned INTEGER_TYPE,
but with non-standard precision.

* gcc.c-torture/compile/pr52891-1.c: New test.
* gcc.c-torture/compile/pr52891-2.c: New test.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-4_7-branch@186695 138bc75d-0d04-0410-961f-82ee72b054a4