GenTreePtr divisorOp = treeNode->gtGetOp2();
emitAttr size = EA_ATTR(genTypeSize(genActualType(treeNode->TypeGet())));
- // TODO-ARM64-CQ: Optimize a divide by power of 2 as we do for AMD64
-
if (divisorOp->IsIntegralConst(0))
{
// We unconditionally throw a divide by zero exception
//
// Arguments:
// pTree: pointer to the parent node's link to the node we care about
+// data: fgWalkData which is used to get info about parents and fixup call args
void Lowering::LowerSignedDivOrMod(GenTreePtr* ppTree, Compiler::fgWalkData* data)
{