Go patch committed: Support new numeric literal syntax

2019-08-17 Thread Ian Lance Taylor
This Go frontend patch adds support for new numeric literal syntax that was added to the Go 1.13 release (https://tip.golang.org/doc/go1.13#language). This supports 0b and 0o prefixes, and hex floats. This was tested against test/literal2.go in the gc repo. Bootstrapped and ran Go testsuite on

Go patch committed: allocate defer records on the stack

2019-08-17 Thread Ian Lance Taylor
This Go patch Cherry Zhang allocates defer records on the stack. When a defer is executed at most once in a function body, we can allocate the defer record for it on the stack instead of on the heap. This should make defers of this kind (which are very common) faster. This is a port of

Re: [PATCH 8/9] ifcvt: Handle swap-style idioms differently.

2019-08-17 Thread Robin Dapp
> I'm still a bit worried about the overlap between the expanded > noce_convert_multiple_sets and cond_move_process_if_block (5/9). > It seems like we're making noce_convert_multiple_set handle most of > the conditional move cases that cond_move_process_if_block can handle. > But like you say,

[doc] Update reference to elm-lang.org quote in ux.texi

2019-08-17 Thread Gerald Pfeifer
Committed. Gerald 2019-08-17 Gerald Pfeifer * doc/ux.texi (User Experience Guidelines): Update reference. Index: doc/ux.texi === --- doc/ux.texi (revision 274599) +++ doc/ux.texi (working copy) @@ -9,7 +9,7 @@

[doc] Adjust links to the FSF's why-not-lgpl article

2019-08-17 Thread Gerald Pfeifer
Committed. 2019-08-17 Gerald Pfeifer * doc/include/gpl_v3.texi (Copying): Adjust the link to "Why not LGPL". Index: doc/include/gpl_v3.texi === --- doc/include/gpl_v3.texi (revision 274599) +++

Re: [PATCH] Sanitizing the middle-end interface to the back-end for strict alignment

2019-08-17 Thread Bernd Edlinger
On 8/15/19 9:47 PM, Bernd Edlinger wrote: > Hi, > > this is the split out part from the "Fix not 8-byte aligned ldrd/strd on > ARMv5 (PR 89544)" > which is sanitizing the middle-end interface to the back-end for strict > alignment, > and a couple of bug-fixes that are necessary to survive