Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
for !charrange, it had to be ifgt, not ifge.
  • Loading branch information
timo committed Nov 20, 2013
1 parent d959560 commit c293015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/jvm/QAST/Compiler.nqp
Expand Up @@ -4901,7 +4901,7 @@ class QAST::CompilerJAST {
$il.append(JAST::Instruction.new( :op('iflt'), $succeed_and_pop ));
$il.append(JAST::PushIVal.new( :value($node[2].value) ));
$il.append($LCMP);
$il.append(JAST::Instruction.new( :op('ifge'), $succeed ));
$il.append(JAST::Instruction.new( :op('ifgt'), $succeed ));
$il.append(JAST::Instruction.new( :op('goto'), %*REG<fail> ));
$il.append($succeed_and_pop);
$il.append($POP2);
Expand Down

0 comments on commit c293015

Please sign in to comment.