control_flow: Fix duplicate switch case in OpcodeToken

This previously duplicated the case of the PBK case above it.
merge-requests/60/head
Lioncash 2021-07-26 04:16:32 +07:00
parent 7e272d3cd8
commit 0b67df1f7c
1 changed files with 1 additions and 1 deletions

@ -73,7 +73,7 @@ Token OpcodeToken(Opcode opcode) {
return Token::PBK;
case Opcode::PCNT:
case Opcode::CONT:
return Token::PBK;
return Token::PCNT;
case Opcode::PEXIT:
case Opcode::EXIT:
return Token::PEXIT;