diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-10-21 17:15:25 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2019-10-21 17:15:25 +0000 |
commit | 10d4b752a7fcb70d87dd3ffe7264aa5cfa8a7a76 (patch) | |
tree | b3ec30b62f351237f1e2e4d704f798caa33e434a | |
parent | 0c5df8dbe561949050a7796aa6a83de164f95fed (diff) | |
download | bcm5719-llvm-10d4b752a7fcb70d87dd3ffe7264aa5cfa8a7a76.tar.gz bcm5719-llvm-10d4b752a7fcb70d87dd3ffe7264aa5cfa8a7a76.zip |
CrossDSOCFI - silence static analyzer dyn_cast<> null dereference warning. NFCI.
The static analyzer is warning about a potential null dereference, but we should be able to use cast<> directly and if not assert will fire for us.
llvm-svn: 375427
-rw-r--r-- | llvm/lib/Transforms/IPO/CrossDSOCFI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp b/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp index 5f3d0c2e373..e20159ba0db 100644 --- a/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp +++ b/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp @@ -104,7 +104,7 @@ void CrossDSOCFI::buildCFICheck(Module &M) { FunctionCallee C = M.getOrInsertFunction( "__cfi_check", Type::getVoidTy(Ctx), Type::getInt64Ty(Ctx), Type::getInt8PtrTy(Ctx), Type::getInt8PtrTy(Ctx)); - Function *F = dyn_cast<Function>(C.getCallee()); + Function *F = cast<Function>(C.getCallee()); // Take over the existing function. The frontend emits a weak stub so that the // linker knows about the symbol; this pass replaces the function body. F->deleteBody(); |