PPCISelLowering.cpp - don't dereference a dyn_cast<>.
dyn_cast<> can return nullptr which we would then dereference - use cast<> which will assert that the type is correct.
Loading
Please sign in to comment
dyn_cast<> can return nullptr which we would then dereference - use cast<> which will assert that the type is correct.