Use "isa" since the variable isn't used.
authorBill Wendling <isanbard@gmail.com>
Tue, 6 Aug 2019 07:27:26 +0000 (07:27 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 6 Aug 2019 07:27:26 +0000 (07:27 +0000)
llvm-svn: 367985

llvm/lib/Target/BPF/BPFAbstractMemberAccess.cpp

index f55f6f9..e4f29fb 100644 (file)
@@ -311,7 +311,7 @@ bool BPFAbstractMemberAccess::IsValidAIChain(const MDNode *ParentType,
 
   // Child is a derived/pointer type, which is due to type casting.
   // Pointer type cannot be in the middle of chain.
-  if (const auto *PtrTy = dyn_cast<DIDerivedType>(CType))
+  if (isa<DIDerivedType>(CType))
     return false;
 
   // Parent is a pointer type.