[llvm] f578982 - [TableGen] Remove unnecessary const_cast. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 21:52:48 PST 2025


Author: Craig Topper
Date: 2025-03-07T21:52:29-08:00
New Revision: f5789824900d61a8fbabe17c4449ff2e31d24ad4

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

LOG: [TableGen] Remove unnecessary const_cast. NFC

Added: 
    

Modified: 
    llvm/utils/TableGen/DecoderEmitter.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/utils/TableGen/DecoderEmitter.cpp b/llvm/utils/TableGen/DecoderEmitter.cpp
index 24394a36c68c0..1a5867265dd4d 100644
--- a/llvm/utils/TableGen/DecoderEmitter.cpp
+++ b/llvm/utils/TableGen/DecoderEmitter.cpp
@@ -249,7 +249,7 @@ static const BitsInit &getBitsField(const Record &def, StringRef str) {
         Bits.push_back(BI->getBit(Idx));
       }
     } else if (const BitInit *BI = dyn_cast<BitInit>(SI.Value)) {
-      Bits.push_back(const_cast<BitInit *>(BI));
+      Bits.push_back(BI);
     } else {
       for (unsigned Idx = 0U; Idx < SI.BitWidth; ++Idx)
         Bits.push_back(UnsetInit::get(def.getRecords()));


        


More information about the llvm-commits mailing list