Re: [PATCH][AArch64] Implement vsqrt_f64 intrinsic

2014-12-16 Thread Joseph Myers
On Mon, 15 Dec 2014, James Greenhalgh wrote: > > @@ -22792,6 +22792,12 @@ vsqrtq_f32 (float32x4_t a) > >return __builtin_aarch64_sqrtv4sf (a); > > } > > > > +__extension__ static __inline float64x1_t __attribute__ > > ((__always_inline__)) > > +vsqrt_f64 (float64x1_t a) > > +{ > > + retur

Re: [PATCH] Make dg-extract-results.sh explicitly treat .{sum,log} files as text

2014-12-16 Thread Mike Stump
On Dec 16, 2014, at 1:43 PM, Sergio Durigan Junior wrote: > On Tuesday, December 16 2014, Mike Stump wrote: > >> So, either, the tool should not generate 0 in the output, which, is rather >> anti-social, or one should strip the funny characters in a more portable >> fashion. >> >> tr and cat -

Re: [PATCH][ARM]Fix __ARM_SIZEOF_WCHAR_T definition.

2014-12-16 Thread Joseph Myers
On Tue, 16 Dec 2014, Renlin Li wrote: > Hi all, > > According to ACLE 2.0, the value of __ARM_SIZEOF_WCHAR_T should be defined in > terms of byte, which means it should be 2 or 4. This patch corrects the error > in arm backend. What error? builtin_define_type_sizeof does define a size in bytes

Re: [PATCH] Make dg-extract-results.sh explicitly treat .{sum,log} files as text

2014-12-16 Thread Sergio Durigan Junior
On Tuesday, December 16 2014, Mike Stump wrote: > Well, Iā€™d still say that ā€˜\0ā€™ in the output of tools is antisocial and that > is the real bug that needs to be fixed. I agree with you, and I am working on a patch to fix GDB, too. > That aside, it is reasonable to protect testing from poorly be

Go patch committed: Don't crash on append with a single argument

2014-12-16 Thread Ian Lance Taylor
Gccgo was crashing when a program called append with a single argument. Doing this doesn't make sense, but of course the compiler should not crash. The crash was due to the code passing nil as the second argument, then converting that to a slice composite literal. A slice composite literal needs

[PATCH] Treat a sibling call as though it does a wild read

2014-12-16 Thread John David Anglin
On 8-Dec-14, at 5:36 PM, Jeff Law wrote: On 12/08/14 15:15, John David Anglin wrote: On 12/8/2014 3:01 PM, Jeff Law wrote: The above is wrong for sibcalls. Sibcall arguments are relative to the incoming argument pointer. Is this always the frame pointer? I don't think it's always the frame

Re: [testsuite] Fix multiple definitions of _init

2014-12-16 Thread Oleg Endo
On Mon, 2014-12-08 at 14:51 +0900, Kaz Kojima wrote: > Oleg Endo wrote: > > Kaz, could you please check if the patch doesn't break anything on > > sh4-linux? If so, I'd like to commit this to trunk. > > Build and test ok on sh4-unknown-linux-gnu. > Now also tested here with make -k check RUNT

<    1   2