[llvm] 2ceec68 - [ValueTypes] Rename FlagVT to Glue in ValueTypes.td. NFC

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Wed May 29 09:25:15 PDT 2024


Author: Craig Topper
Date: 2024-05-29T09:25:04-07:00
New Revision: 2ceec68e1630b40a37448c44fea63f9114848235

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

LOG: [ValueTypes] Rename FlagVT to Glue in ValueTypes.td. NFC

Nothing ever refers to it as FlagVT so we can just use the LLVMName
"Glue".

Added: 
    

Modified: 
    llvm/include/llvm/CodeGen/ValueTypes.td

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/ValueTypes.td b/llvm/include/llvm/CodeGen/ValueTypes.td
index a6981b0ffa13c..963b6a71de380 100644
--- a/llvm/include/llvm/CodeGen/ValueTypes.td
+++ b/llvm/include/llvm/CodeGen/ValueTypes.td
@@ -274,9 +274,7 @@ def nxv4f64  : VTScalableVec<4,  f64, 188>;  // n x  4 x  f64 vector value
 def nxv8f64  : VTScalableVec<8,  f64, 189>;  // n x  8 x  f64 vector value
 
 def x86mmx    : ValueType<64,   190>;  // X86 MMX value
-def FlagVT    : ValueType<0,    191> { // Pre-RA sched glue
-  let LLVMName = "Glue";
-}
+def Glue      : ValueType<0,    191>;  // Pre-RA sched glue
 def isVoid    : ValueType<0,    192>;  // Produces no value
 def untyped   : ValueType<8,    193> { // Produces an untyped value
   let LLVMName = "Untyped";


        


More information about the llvm-commits mailing list