* fix gtDispTree
It is legal situation when we pass ILNone (for example for local stores:
gtDispChild(tree->gtOp.gtOp1, indentStack, IINone);). In this code we
poped value and didn't push anything back, it ended with the stack
underflow.
indentStack->Push(IIEmbedded);
lowerArc = IIEmbedded;
break;
+ case IINone:
+ indentStack->Push(IINone);
+ lowerArc = IINone;
+ break;
default:
- // Should never get here; just use IINone.
+ unreached();
break;
}
}