correct exhaustive case location

This commit is contained in:
Mark Canlas 2022-02-14 13:29:38 -05:00
parent e89beb5845
commit 5dc8d894fa

View File

@ -247,8 +247,8 @@ object MatchOpcodes {
case 1 => c01(aaa, bbb)
case 2 => c10(aaa, bbb)
case 3 => None
case _ => throw new IllegalStateException("two bits did not result in two-bit number")
}
case _ => throw new IllegalStateException("an int should always have bits to find")
}
}