We have not hit this case in CoreCLR yet, but there is a good chance that we will at some point.
int pushes = 0;
- // we should start unbalenced pops within 48 instrs. If not, it is not a special epilog function
+ // we should start unbalanced pops within 48 instrs. If not, it is not a special epilog function
// the only reason we need as many instructions as we have below is because coreclr
// gets instrumented for profiling, code coverage, BBT etc, and we want these things to
// just work.
switch(*ip) {
case 0xF2: // repne
case 0xF3: // repe
+ case 0x90: // nop
ip++;
break;