Re: [PATCH][1/3] Fix PR54733 Optimize endian independent load/store

2014-04-03 Thread Rainer Orth
Thomas Preud'homme thomas.preudho...@arm.com writes: From: Joseph Myers [mailto:jos...@codesourcery.com] + if { [is-effective-target bswap] + ![istarget x86_64-*-*] } { That x86_64-*-* test is wrong. x86_64-*-* and i?86-*-* should always be handled the same (if you

Re: Fix ipa-devirt ICE

2014-04-03 Thread Marc Glisse
On Thu, 3 Apr 2014, Jan Hubicka wrote: + /* Use OTR_TOKEN = INT_MAX as a marker of probably type inconsistent + /* Use OTR_TOKEN = INT_MAX as a marker of probably type inconsistent + OTR_TOKEN == INT_MAX is used to mark calls that are provably Did you mean

[Ping][Patch]Simplify SUBREG with operand whose target bits are cleared by AND operation

2014-04-03 Thread Terry Guo
Hello Eric, Would you please review my patch at http://gcc.gnu.org/ml/gcc-patches/2014-03/msg01582.html? Thanks. BR, Terry

Re: RFA: PATCH to add -fno-gnu-unique for c++/60731

2014-04-03 Thread Richard Biener
On Wed, Apr 2, 2014 at 9:24 PM, Jason Merrill ja...@redhat.com wrote: Use of STB_GNU_UNIQUE to avoid problems with variable symbols shared between two RTLD_LOCAL plugins and a common library dependency causes problems with libraries that depend on dlclose/dlopen to reinitialize state. This

Re: [PATCH][1/3] Fix PR54733 Optimize endian independent load/store

2014-04-03 Thread Andreas Schwab
Thomas Preud'homme thomas.preudho...@arm.com writes: +# Return 1 if the target supports byte swap instructions. + +proc check_effective_target_bswap { } { +global et_bswap_saved + +if [info exists et_bswap_saved] { +verbose check_effective_target_bswap: using cached result

[PATCH][LTO] Reduce WPA memory usage

2014-04-03 Thread Richard Biener
This reduces WPA memory usage at stream-out time by avoiding to allocate the streamer cache node array and by freeing the global out-decl-states hash tables (we do that already for the fn-decl-states). LTO bootstrapped and bootstrapped on x86_64-unknown-linux-gnu, testing in progress. Ok? Not

[PATCH] Fix PR60740

2014-04-03 Thread Richard Biener
The following fixes the graphite ICE that results from stmt_simple_for_scop_p not walking all GIMPLE_COND operands but only SSA name ones. Bootstrap and regtest in progress on x86_64-unknown-linux-gnu. Richard. 2014-04-03 Richard Biener rguent...@suse.de PR tree-optimization/60740

[PATCH, ARM] Fix PR60609 (Error: value of 256 too large for field of 1 bytes)

2014-04-03 Thread Charles Baylis
Hi This bug causes the compiler to create a Thumb-2 TBB instruction with a jump table containing an out of range value in a .byte field: whatever.s:148: Error: value of 256 too large for field of 1 bytes at 100 This occurs because the jump table is followed with a .align 1 due to

[PATCH][LTO] Fix(?) parallel WPA memory unsharing

2014-04-03 Thread Richard Biener
The following fixes(?) parallel WPA memory unsharing caused by streamer_write_chain writing to TREE_CHAIN (for no good reason). The patch removes this historical code. LTO bootstrap and testing running on x86_64-unknown-linux-gnu. Richard. 2014-04-03 Richard Biener rguent...@suse.de

Re: [Patch]Simplify SUBREG with operand whose target bits are cleared by AND operation

2014-04-03 Thread Eric Botcazou
I find the GCC function simplify_subreg fails to simplify rtx (subreg:SI (and:DI (reg/v:DI 115 [ a ]) (const_int 4294967295 [0x])) 4) to zero during the fwprop1 pass, considering the fact that the high 32-bit part of (a 0x) is zero. This leads to some unnecessary

Re: [4.8, PATCH 0/26] Backport Power8 and LE support

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:23 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, Support for Power8 features and the new powerpc64le-linux-gnu target, including the ELFv2 ABI, has been developed up till now on the ibm/gcc-4_8-branch. It was appropriate to use this separate branch while

Re: [4.8, PATCH 2/26] Backport Power8 and LE support: HTM support

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:25 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-p8-htm) backports hardware transactional memory support. Copying Jakub and Richard for the libitm support. Thanks, Bill [gcc] 2014-03-29 Bill Schmidt wschm...@linux.vnet.ibm.com

Re: [4.8, PATCH 5/26] Backport Power8 and LE support: Test adjustments

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 11:25 AM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-le-tests) backports adjustments to a few tests for powerpc64le and the ELFv2 ABI. Thanks, Bill 2014-03-29 Bill Schmidt wschm...@linux.vnet.ibm.com Backport from mainline

Re: [4.8, PATCH 6/26] Backport Power8 and LE support: TDmode for LE

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:29 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-le-dfp) backports fixes for TDmode on a little endian target. Thanks, Bill 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com Backport from mainline r205123:

Re: [4.8, PATCH 7/26] Backport Power8 and LE support: Vector LE

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:30 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-le-vector) backports the changes to support vector infrastructure on powerpc64le. Copying Richard and Jakub for the libcpp bits. Thanks, Bill [gcc] 2014-03-29 Bill Schmidt

Re: [4.8, PATCH 8/26] Backport Power8 and LE support: PR57949

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:30 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-abi-compat) backports the ABI compatibility fix for PR57949. Thanks, Bill [gcc] 2014-03-29 Bill Schmidt wschm...@linux.vnet.ibm.com Backport from mainline r201750.

Re: [4.8, PATCH 10/26] Backport Power8 and LE support: ELFv2 ABI

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:31 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-abi-elfv2) backports the fundamental changes for the ELFv2 ABI for powerpc64le. Copying Richard and Jakub for the libgcc, libitm, and libstdc++ bits. Thanks, Bill [gcc] 2014-03-29

Re: [4.8, PATCH 11/26] Backport Power8 and LE support: gotest

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:31 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-abi-gotest) backports enablement of the Go testsuite for powerpc64le. Thanks, Bill 2014-03-29 Bill Schmidt wschm...@linux.vnet.ibm.com Backport from mainline r205000.

Re: [4.8, PATCH 12/26] Backport Power8 and LE support: Defaults

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:32 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-le-align) sets some miscellaneous defaults for little endian support. Thanks, Bill 2014-03-29 Bill Schmidt wschm...@linux.vnet.ibm.com Apply mainline r205060.

Re: [4.8, PATCH 14/26] Backport Power8 and LE support: DFP absolute value

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:32 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-dfp-abs) backports some unrelated but necessary work to enable the DFP absolute value builtins. Copying Jakub who was involved with the original patch. Thanks, Bill 2014-03-29 Bill

Re: [4.8, PATCH 17/26] Backport Power8 and LE support: Direct moves

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:33 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-direct-move) backports support for the Power8 direct move instructions for little endian. Thanks, Bill 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com Backport from

Re: [4.8, PATCH 16/26] Backport Power8 and LE support: PR56843

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:33 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-pr56843) backports the fix for PR56843. Thanks, Bill [gcc] 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com Backport from mainline 2013-04-05 Bill Schmidt

Re: [4.8, PATCH 18/26] Backport Power8 and LE support: Configure bits 2

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:33 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-le-config-2) backports more configure changes, particularly for multilib/multiarch targeting powerpc64le. Thanks, Bill 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com

Re: [4.8, PATCH 19/26] Backport Power8 and LE support: Quad memory atomic

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:33 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-quad-memory) backports support for quad-memory atomic operations. Thanks, Bill [gcc/testsuite] 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com Back port from mainline

Re: [4.8, PATCH 22/26] Backport Power8 and LE support: -mcall-* endianness

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:34 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-mcall) fixes big-endian assumptions for -mcall-aixdesc and various others. Thanks, Bill 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com Backport from mainline r207658

Re: [4.8, PATCH 21/26] Backport Power8 and LE support: Vector APIs

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:34 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-le-vector-api) backports enablement of LE support for the Altivec APIs, including support for -maltivec=be. Thanks, Bill [gcc] 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com

Re: [4.8, PATCH 23/26] Backport Power8 and LE support: PR60137, PR60203

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:34 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-pr60137-pr60203) backports fixes for two little-endian vector mode problems. Thanks, Bill [gcc] 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com Backport from mainline

Re: [4.8, PATCH 24/26] Backport Power8 and LE support: Reload issues

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:34 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-reload) backports fixes for a couple of problems in PowerPC reload handling. Thanks, Bill 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com Apply mainline r207798

Re: [4.8, PATCH 25/26] Backport Power8 and LE support: V1TI support

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:34 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-v1ti) backports the V1TI support. Thanks, Bill [gcc] 2014-03-19 Bill Schmidt wschm...@linux.vnet.ibm.com Back port from trunk 2014-03-12 Michael Meissner

Re: [4.8, PATCH 26/26] Backport Power8 and LE support: Missing support

2014-04-03 Thread David Edelsohn
On Wed, Mar 19, 2014 at 3:35 PM, Bill Schmidt wschm...@linux.vnet.ibm.com wrote: Hi, This patch (diff-trunk-missing) backports some LE pieces that were found not to have been backported from trunk to the IBM 4.8 branch until relatively recently. Thanks, Bill 2014-03-19 Bill Schmidt

[PATCH] Fix PR c++/21113

2014-04-03 Thread Patrick Palka
Hi, This patch fixes c++/21113 which reports that the C++ frontend does not forbid jumps into the scope of identifiers with variably-modified types. The patch simply augments decl_jump_unsafe() to disallow jumping into blocks that initialize variably-modified decls. I bootstrapped and regtested

[PATCH] Fix PR c++/44613

2014-04-03 Thread Patrick Palka
Hi, This patch fixes a wrong code issue in the code generated for VLAs in the C++ frontend. This exact issue was fixed in the C frontend with r85849, and this patch is essentially a port of r85849 for the C++ frontend. The issue is that this C++ code: { foo: int x[n]; f (); } gets

[PING][C++ Patch, 4.8] Backport fix for c++/54537 to FSF 4.8

2014-04-03 Thread Peter Bergner
I'd like to ping the following backport patch for the fix for PR54537. This did bootstrap and regtest with no regressions on powerpc64-linux. http://gcc.gnu.org/ml/gcc-patches/2014-03/msg01148.html Peter

Re: [PING^8][PATCH] Add a couple of dialect and warning options regarding Objective-C instance variable scope

2014-04-03 Thread Dimitris Papavasiliou
Still pinging. On 03/28/2014 11:58 AM, Dimitris Papavasiliou wrote: Ping! On 03/23/2014 03:20 AM, Dimitris Papavasiliou wrote: Ping! On 03/13/2014 11:54 AM, Dimitris Papavasiliou wrote: Ping! On 03/06/2014 07:44 PM, Dimitris Papavasiliou wrote: Ping! On 02/27/2014 11:44 AM, Dimitris

Re: [committed, libjava] XFAIL sourcelocation (PR libgcj/55637) backported to 4.8.3

2014-04-03 Thread Dominique d'Humières
Thanks for the tip. What should I do now? Should I fix the ChangeLog entry and add a new one or do nothing? Dominique Le 2 avr. 2014 à 12:47, Rainer Orth r...@cebitec.uni-bielefeld.de a écrit : domi...@lps.ens.fr (Dominique Dhumieres) writes: r...@cebitec.uni-bielefeld.de (Rainer Orth)

Re: [committed, libjava] XFAIL sourcelocation (PR libgcj/55637) backported to 4.8.3

2014-04-03 Thread Rainer Orth
Hi Dominique, Thanks for the tip. What should I do now? Should I fix the ChangeLog entry and add a new one or do nothing? if you want, you could fix the ChangeLog entry in place, but don't add a new one for that change. Rainer --

Re: [PING][C++ Patch, 4.8] Backport fix for c++/54537 to FSF 4.8

2014-04-03 Thread Jonathan Wakely
On 03/04/14 10:25 -0500, Peter Bergner wrote: I'd like to ping the following backport patch for the fix for PR54537. This did bootstrap and regtest with no regressions on powerpc64-linux. http://gcc.gnu.org/ml/gcc-patches/2014-03/msg01148.html I don't know how risky the front-end change is,

Re: [gomp4] Add tables generation

2014-04-03 Thread Bernd Schmidt
On 04/02/2014 10:36 AM, Thomas Schwinge wrote: I see regressions in the libgomp testsuite for configurations where offloading is not enabled: spawn [...]/build/gcc/xgcc -B[...]/build/gcc/ [...]/source/libgomp/testsuite/libgomp.c/for-3.c -B[...]/build/x86_64-unknown-linux-gnu/./libgomp/

Re: [gomp4] Add tables generation

2014-04-03 Thread Ilya Verbin
2014-04-03 20:13 GMT+04:00 Bernd Schmidt ber...@codesourcery.com: The patch below should be a better fix, making the references to __OPENMP_TARGET__ weak. Does this work for you? Shouldn't we just remove __OPENMP_TARGET__ argument from GOMP_target, since we decided to pass it to

[PATCH] Initialize sanitizer builtins (PR sanitizer/60745)

2014-04-03 Thread Marek Polacek
Under certain circumstances the sanitizer builtins are not initialized properly and ubsan_instrument_return must make sure they are initialized. Otherwise builtin_decl_explicit returns NULL and we'll ICE in build_call_expr_loc_array. I'm not sure which other ubsan routines need similar fix. No

Re: [PATCH, ARM] Fix PR60609 (Error: value of 256 too large for field of 1 bytes)

2014-04-03 Thread Ramana Radhakrishnan
On Thu, Apr 3, 2014 at 2:27 PM, Charles Baylis charles.bay...@linaro.org wrote: Hi This bug causes the compiler to create a Thumb-2 TBB instruction with a jump table containing an out of range value in a .byte field: whatever.s:148: Error: value of 256 too large for field of 1 bytes at 100

Re: [gomp4] Add tables generation

2014-04-03 Thread Bernd Schmidt
On 04/03/2014 06:53 PM, Ilya Verbin wrote: 2014-04-03 20:13 GMT+04:00 Bernd Schmidt ber...@codesourcery.com: The patch below should be a better fix, making the references to __OPENMP_TARGET__ weak. Does this work for you? Shouldn't we just remove __OPENMP_TARGET__ argument from GOMP_target,

Re: [PATCH] PowerPC, PR60735: _Decimal64 moves broken on -mspe

2014-04-03 Thread David Edelsohn
On Tue, Apr 1, 2014 at 7:55 PM, Michael Meissner meiss...@linux.vnet.ibm.com wrote: In backporting the power8 changes to the 4.8 branch, one of the testers of these patches noticed that libgcc cannot be built on a linux SPE target. The reason was the _Decimal64 type did not have a proper move

Re: [gomp4] Add tables generation

2014-04-03 Thread Ilya Verbin
2014-04-03 21:06 GMT+04:00 Bernd Schmidt ber...@codesourcery.com: On 04/03/2014 06:53 PM, Ilya Verbin wrote: 2014-04-03 20:13 GMT+04:00 Bernd Schmidt ber...@codesourcery.com: The patch below should be a better fix, making the references to __OPENMP_TARGET__ weak. Does this work for you?

Re: [gomp4] Add tables generation

2014-04-03 Thread Bernd Schmidt
On 04/03/2014 07:25 PM, Ilya Verbin wrote: Yes, initially the idea was to use it for look up the right function. But now each DSO will call GOMP_offload_register, and pass unique pointer to __OPENMP_TARGET__ (host_table) for this DSO. Then gomp_register_images_for_device registers all this host

Re: [gomp4] Add tables generation

2014-04-03 Thread Ilya Verbin
2014-04-03 21:28 GMT+04:00 Bernd Schmidt ber...@codesourcery.com: On 04/03/2014 07:25 PM, Ilya Verbin wrote: Yes, initially the idea was to use it for look up the right function. But now each DSO will call GOMP_offload_register, and pass unique pointer to __OPENMP_TARGET__ (host_table) for

Re: [PATCH] PowerPC, PR60735: _Decimal64 moves broken on -mspe

2014-04-03 Thread Michael Meissner
On Thu, Apr 03, 2014 at 01:24:25PM -0400, David Edelsohn wrote: On Tue, Apr 1, 2014 at 7:55 PM, Michael Meissner meiss...@linux.vnet.ibm.com wrote: In backporting the power8 changes to the 4.8 branch, one of the testers of these patches noticed that libgcc cannot be built on a linux SPE

[4.8, PATCH 28/26] Backport Power8 and LE support: Fix for SPE (PR60735)

2014-04-03 Thread Bill Schmidt
Hi, This patch (diff-pr60735) adds to the 4.8 PowerPC backport patch series with a backported fix for PR60735, an unrecognized insn problem for SPE. Thanks, Bill [gcc] 2014-04-03 Bill Schmidt wschm...@linux.vnet.ibm.com Back port mainline subversion id 209025. 2014-04-02

[4.8, PATCH 29/26] Backport Power8 and LE support: Document vec_vgbbd

2014-04-03 Thread Bill Schmidt
Hi, This patch (diff-vecdoc) is the last addition to the 4.8 PowerPC backport patch series. It simply adds some missing documentation that should have been part of one of the previous patches. I'm currently doing one more quick round of testing with the three late-addition patches, and will

Re: [GOOGLE] Updates SSA after VPT transofrmations in AFDO pass

2014-04-03 Thread Xinliang David Li
looks fine. David On Thu, Apr 3, 2014 at 10:56 AM, Dehao Chen de...@google.com wrote: This patch updates SSA after VPT transformation. This is needed because compute_inline_parameters will ICE without updated SSA. Testing on-going. OK for google-4_8? Thanks, Dehao Index:

[GOOGLE] Updates SSA after VPT transofrmations in AFDO pass

2014-04-03 Thread Dehao Chen
This patch updates SSA after VPT transformation. This is needed because compute_inline_parameters will ICE without updated SSA. Testing on-going. OK for google-4_8? Thanks, Dehao Index: gcc/auto-profile.c === ---

[Fortran-CAF, committed] Add array sending support for coarrays

2014-04-03 Thread Tobias Burnus
This patch handles assigning to coarray array (sections) from local arrays for array RHS and for scalar RHS. I have lightly tested it with libcaf_single. On the library side, I added a minimal implementation for libcaf_single, which handles only rank==1 arrays, but which otherwise seems to

[Fortran-caf] Merge from the trunk to the branch

2014-04-03 Thread Tobias Burnus
Committed to the fortran-caf branch as Rev. 209062 Tobias

[PR target/60657] [P1 regression] Fix operand predicates for a few ARM insns

2014-04-03 Thread Jeff Law
As noted in the PR, there are a few insns in the ARM backend which use const_int_operand as a predicate, but which have constraints like I or M. With the predicate accepting all constants, it's possible for a pass such as combine to create an insn where the constant operand matches the

[RFA jit] clear timevar_enable in timevar_print

2014-04-03 Thread Tom Tromey
The timevar module doesn't properly re-initialize timevar_print between invocations of the compiler. In particular, if the compiler is put into verbose mode, and subsequently put back into quiet mode, then timevar_enable is never set to false -- leading to unwanted timevar display. This patch

Re: [PATCH, PR 60640] When creating virtual clones, clone thunks too

2014-04-03 Thread Jan Hubicka
+/* If E does not lead to a thunk, simply redirect it to N. Otherwise create + one or more equivalent thunks for N and redirect E to the first in the + chain. */ + +void +redirect_edge_duplicating_thunks (struct cgraph_edge *e, struct cgraph_node *n, +

Re: [4.8, PATCH 29/26] Backport Power8 and LE support: Document vec_vgbbd

2014-04-03 Thread Bill Schmidt
On Thu, 2014-04-03 at 13:01 -0500, Bill Schmidt wrote: I'm currently doing one more quick round of testing with the three late-addition patches, and will then be ready to commit the series. Final tests have all passed (BE Linux, LE Linux, BE AIX). Thanks, Bill

Re: [PATCH] PR debug/57519 - Emit DW_TAG_imported_declaration under the right class for 'using' statements in a class

2014-04-03 Thread Cary Coutant
ChangeLog: 2014-03-25 Siva Chandra Reddy sivachan...@google.com Fix PR debug/57519 /cp PR debug/57519 * class.c (handle_using_decl): Pass the correct scope to cp_emit_debug_info_for_using. testsuite/ PR debug/57519 *

RE: [PATCH][1/3] Fix PR54733 Optimize endian independent load/store

2014-04-03 Thread Thomas Preud'homme
From: Andreas Schwab [mailto:sch...@suse.de] Please add m68k-*-*. From: gcc-patches-ow...@gcc.gnu.org [mailto:gcc-patches- ow...@gcc.gnu.org] On Behalf Of Rainer Orth Just omit the { target *-*-* } completely, also a few more times. Please find attached an updated patch.

RE: [PATCH][2/3] Fix PR54733 Optimize endian independent load/store

2014-04-03 Thread Thomas Preud'homme
From: gcc-patches-ow...@gcc.gnu.org [mailto:gcc-patches- ow...@gcc.gnu.org] On Behalf Of Rainer Orth Just omit the { target *-*-* } completely, also a few more times. Please find attached an updated patch. Best regards, Thomas gcc32rm-84.3.2.part2.diff Description: Binary data

Re: [gomp4] Add tables generation

2014-04-03 Thread Thomas Schwinge
Hi! On Thu, 3 Apr 2014 18:13:08 +0200, Bernd Schmidt ber...@codesourcery.com wrote: On 04/02/2014 10:36 AM, Thomas Schwinge wrote: I see regressions in the libgomp testsuite for configurations where offloading is not enabled: spawn [...]/build/gcc/xgcc -B[...]/build/gcc/