diff --git a/runtime/parrot/library/LLVM.pm b/runtime/parrot/library/LLVM.pm index a00b74dde7..8837b0e0ab 100644 --- a/runtime/parrot/library/LLVM.pm +++ b/runtime/parrot/library/LLVM.pm @@ -50,11 +50,7 @@ module LLVM { my $how := $enum.HOW; for @values { my $c := +$from; # Force clone of $count. - $how.add_method( - $_, - method () { $c }, - to => $enum, - ); + $how.add_method( $_, method () { $c }, to => $enum); $from := &inc ?? &inc($from) !! $from++; } };