Author: Chittireddy, Sindhu Date: 2023-03-27T17:39:40-04:00 New Revision: 9972c9a893478241b7c9d8b587df978bc6d7e5a0
URL: https://github.com/llvm/llvm-project/commit/9972c9a893478241b7c9d8b587df978bc6d7e5a0 DIFF: https://github.com/llvm/llvm-project/commit/9972c9a893478241b7c9d8b587df978bc6d7e5a0.diff LOG: [NFC] Remove unused member variable `PolicyBitMask` in SemaRecord Coverity static analysis tool found PolicyBitMask being used uninitialized in push_back call in RVVEmitter::createRVVIntrinsics() but this variable has no uses. Differential revision: https://reviews.llvm.org/D146847 Added: Modified: clang/utils/TableGen/RISCVVEmitter.cpp Removed: ################################################################################ diff --git a/clang/utils/TableGen/RISCVVEmitter.cpp b/clang/utils/TableGen/RISCVVEmitter.cpp index b19dd4b6b9808..365fa8a67ffa1 100644 --- a/clang/utils/TableGen/RISCVVEmitter.cpp +++ b/clang/utils/TableGen/RISCVVEmitter.cpp @@ -57,9 +57,6 @@ struct SemaRecord { // Suffix of overloaded intrinsic name. SmallVector<PrototypeDescriptor> OverloadedSuffix; - // BitMask for supported policies. - uint16_t PolicyBitMask; - // Number of field, large than 1 if it's segment load/store. unsigned NF; _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits