Index: src/ops/cmp.ops =================================================================== --- src/ops/cmp.ops (revision 37112) +++ src/ops/cmp.ops (working copy) @@ -842,7 +842,7 @@ } inline op iseq(out INT, in STR, in STR) { - $1 = ( Parrot_str_equal(interp, $2, $3) ? 1 : 0 ); + $1 = (Parrot_str_equal(interp, $2, $3) ? 1 : 0); } inline op iseq(out INT, invar PMC, invar PMC) { @@ -873,7 +873,7 @@ } inline op isne(out INT, in STR, in STR) { - $1 = ( Parrot_str_not_equal(interp, $2, $3) ? 1 : 0 ); + $1 = (Parrot_str_not_equal(interp, $2, $3) ? 1 : 0); } inline op isne(out INT, invar PMC, invar PMC) { Index: lib/Parrot/Harness/Options.pm =================================================================== --- lib/Parrot/Harness/Options.pm (revision 37112) +++ lib/Parrot/Harness/Options.pm (working copy) @@ -100,7 +100,8 @@ foreach my $opt (keys %$opts_ref) { if (exists $remap{$opt}) { $mapped{$remap{$opt}} = undef; - } else { + } + else { $mapped{$opt} = $opts_ref->{$opt}; } }