Skip to content

Commit

Permalink
Revert "Temp-fudge mul_i opt test"
Browse files Browse the repository at this point in the history
This reverts commit a3a7c14.
  • Loading branch information
zoffixznet committed Apr 21, 2018
1 parent 4b5d36f commit d443076
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions t/02-rakudo/08-inline-native-arith.t
@@ -1,11 +1,9 @@
use v6;
use Test;

plan :skip-all<z>;
plan 1;

my $p = run($*EXECUTABLE, '--target=optimize',
'-e', 'my int $i = 1; for ^10 { $i = $i * 2 }', :out);
say $p.out.slurp(:close);
# like $p.out.slurp(:close), /mul_i/,
# '$i * 2 inlines to mul_i when $i is declared as int';
like $p.out.slurp(:close), /mul_i/,
'$i * 2 inlines to mul_i when $i is declared as int';

0 comments on commit d443076

Please sign in to comment.