Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Whatever arguments appear to have been flipped.
  • Loading branch information
pmichaud committed Apr 10, 2009
1 parent 70fc009 commit 3280d41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/gen_whatever_pir.pl
Expand Up @@ -52,16 +52,16 @@

print $fh '
.sub "!whatever_helper_left"
.param pmc right
.param pmc left
$P0 = find_lex "$op"
$P1 = find_lex "$known"
.tailcall $P0($P1, right)
.tailcall $P0(left, $P1)
.end
.sub "!whatever_helper_right"
.param pmc left
.param pmc right
$P0 = find_lex "$op"
$P1 = find_lex "$known"
.tailcall $P0(left, $P1)
.tailcall $P0($P1, right)
.end
';

Expand Down

0 comments on commit 3280d41

Please sign in to comment.