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
x
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 https://g
> 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, noce
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 @@
@cindex
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)
+++ doc/include/gp
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 boot-s