"llvm/lib/IR/Globals.cpp" did not exist on "81210d232d0d467853a0123662def0a9801eed8e"
[LoopVectorize] Don't dereference a dyn_cast result. NFCI.
The static analyzer is warning about potential null dereferences of dyn_cast<> results, we can use cast<> directly as we know that these cases should all be CastInst, which is why its working atm and anyway cast<> will assert if they aren't. llvm-svn: 372116
Loading
Please sign in to comment