[llvm] 37c8d59 - fix build bots after f5ac23b5ae090d64d31f0b6624470af97dc20bf6

Krasimir Georgiev via llvm-commits llvm-commits at lists.llvm.org
Wed Dec 22 01:04:51 PST 2021


Author: Krasimir Georgiev
Date: 2021-12-22T10:00:35+01:00
New Revision: 37c8d5915f37432f49fd4b0e6ec318ae68750af1

URL: https://github.com/llvm/llvm-project/commit/37c8d5915f37432f49fd4b0e6ec318ae68750af1
DIFF: https://github.com/llvm/llvm-project/commit/37c8d5915f37432f49fd4b0e6ec318ae68750af1.diff

LOG: fix build bots after f5ac23b5ae090d64d31f0b6624470af97dc20bf6

The old member was `= 0`:
https://github.com/llvm/llvm-project/commit/f5ac23b5ae090d64d31f0b6624470af97dc20bf6#diff-7781d63141d53242da0520361a554df579ecb079b33bdcfbe7a0db95d44cca49L1740

It looks like this caused some bots to fail:
https://lab.llvm.org/buildbot/#/builders/127/builds/21684

Added: 
    

Modified: 
    llvm/include/llvm/Analysis/TargetTransformInfo.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Analysis/TargetTransformInfo.h b/llvm/include/llvm/Analysis/TargetTransformInfo.h
index b261ad8b2adf..d9f5c9689d5c 100644
--- a/llvm/include/llvm/Analysis/TargetTransformInfo.h
+++ b/llvm/include/llvm/Analysis/TargetTransformInfo.h
@@ -1736,7 +1736,7 @@ class TargetTransformInfo::Concept {
                                    const Function *Callee) const = 0;
   virtual bool areTypesABICompatible(const Function *Caller,
                                      const Function *Callee,
-                                     const ArrayRef<Type *> &Types) const;
+                                     const ArrayRef<Type *> &Types) const = 0;
   virtual bool isIndexedLoadLegal(MemIndexedMode Mode, Type *Ty) const = 0;
   virtual bool isIndexedStoreLegal(MemIndexedMode Mode, Type *Ty) const = 0;
   virtual unsigned getLoadStoreVecRegBitWidth(unsigned AddrSpace) const = 0;


        


More information about the llvm-commits mailing list