[llvm] 3ce67a8 - [TableGen] Remove unnecessary use of utostr to print a byte. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 3 14:37:44 PST 2025


Author: Craig Topper
Date: 2025-03-03T14:37:37-08:00
New Revision: 3ce67a81fac301e7a308c7c6c08e0abd883972e9

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

LOG: [TableGen] Remove unnecessary use of utostr to print a byte. NFC

We can cast to unsigned instead.

Added: 
    

Modified: 
    llvm/utils/TableGen/DecoderEmitter.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/utils/TableGen/DecoderEmitter.cpp b/llvm/utils/TableGen/DecoderEmitter.cpp
index 425bf82c93dbe..947817aa39655 100644
--- a/llvm/utils/TableGen/DecoderEmitter.cpp
+++ b/llvm/utils/TableGen/DecoderEmitter.cpp
@@ -829,7 +829,7 @@ void DecoderEmitter::emitTable(formatted_raw_ostream &OS, DecoderTable &Table,
     OS << (unsigned)Byte << ", ";
     NumToSkip |= Byte << 8;
     Byte = *I++;
-    OS << utostr(Byte) << ", ";
+    OS << (unsigned)(Byte) << ", ";
     NumToSkip |= Byte << 16;
     return NumToSkip;
   };


        


More information about the llvm-commits mailing list