Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix 'zero' microbenchmark not to sink-warn
  • Loading branch information
Geoffrey Broadwell committed Aug 28, 2015
1 parent 00000fb commit 8b8d049
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions microbenchmarks.pl
Expand Up @@ -12,9 +12,9 @@
name => 'zero',
summarize => 0,
expected => '',
perl5 => '0',
perl6 => '0',
nqp => '0',
perl5 => 'my $z = 0;',
perl6 => 'my $z = 0;',
nqp => 'my $z := 0;',
},
{
name => 'hello',
Expand Down

0 comments on commit 8b8d049

Please sign in to comment.