ObjectFile makeTriple - silence static analyzer dyn_cast<COFFObjectFile> null derefer...
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 1 Oct 2019 11:25:17 +0000 (11:25 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Tue, 1 Oct 2019 11:25:17 +0000 (11:25 +0000)
commitbc9a1b37b934626f54f4c960f6a86ea76785ab1a
tree1e945793ec7917f579d4e2fd3031f6900b084b17
parent9f2bf666bc0ec59be6684ef8b50cab22a4fad50e
ObjectFile makeTriple - silence static analyzer dyn_cast<COFFObjectFile> null dereference warning. NFCI.

The static analyzer is warning about a potential null dereference, but we should be able to use cast<COFFObjectFile> directly and if not assert will fire for us.

llvm-svn: 373324
llvm/lib/Object/ObjectFile.cpp