[perl #130686] [BUG] div doesn't work right on large int values

2017-01-31 Thread via RT
# New Ticket Created by Michael Schaap # Please include the string: [perl #130686] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130686 > % perl6 To exit type 'exit' or '^D' > my int $i = 10**16; 1 > say $i;

[perl #130685] operators as macros sink their arguments

2017-01-31 Thread via RT
# New Ticket Created by Benjamin Goldberg # Please include the string: [perl #130685] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130685 > When I type the following in the #perl6 irc channel: m: use experimental :macros; m

[perl #130637] [SEGV] Odd segfaults with a small grammar

2017-01-31 Thread jn...@jnthn.net via RT
On Tue, 31 Jan 2017 08:21:34 -0800, jn...@jnthn.net wrote: > It golfs further still, it seems. This one also blows up: > > grammar Grammar::Foo { > token TOP { > 'z' | :i <[0..9]> ** 4 > } >} > my $res = Grammar::Foo.parse( '2603' ); > > And is fixed by the removal of the :i,

[perl #130615] [PERF] Autoincrement much slower in sink context

2017-01-31 Thread jn...@jnthn.net via RT
On Sat, 21 Jan 2017 13:52:37 -0800, ale...@yahoo.com wrote: > m: my int $i = 0; while $i < 10_000_000 {  $i++ }; say now - INIT > now;rakudo-moar 7f245f: OUTPUT«5.1848902␤» > m: my (int $i, int $nosink) = 0, 0; while $i < 10_000_000 {  $nosink = > $i++ }; say now - INIT now;rakudo-moar 7f245f: OUTP

[perl #130637] [SEGV] Odd segfaults with a small grammar

2017-01-31 Thread jn...@jnthn.net via RT
On Tue, 24 Jan 2017 22:58:44 -0800, comdog wrote: > This program consistently segfaults for me: > > grammar Grammar::Foo { > rule TOP { > 'z' | > } > token unicode_escape { '\\u' :i <[0..9a..f]> ** 4 } > } > > my $res = Grammar::Foo.parse(

[perl #130339] [STAR] make install failure on rakudo star 2016.11

2017-01-31 Thread Zoffix Znet via RT
Closing, as the cause has been identified in previous replies.

[perl #130659] harness5 misreports its options

2017-01-31 Thread Zoffix Znet via RT
On Sat, 28 Jan 2017 02:06:01 -0800, toolfor...@durchholz.org wrote: > harness5 has --moar, which is used in makefiles, and I think the code > also defines a --jvm. > Neither --moar nor --jvm are reported with --help. > > The POD section in harness5 carries most options in its SYNOPIS, but > neit