Skip to content

Commit 2ceec68

Browse files
committed
[ValueTypes] Rename FlagVT to Glue in ValueTypes.td. NFC
Nothing ever refers to it as FlagVT so we can just use the LLVMName "Glue".
1 parent cfb209b commit 2ceec68

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

llvm/include/llvm/CodeGen/ValueTypes.td

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,7 @@ def nxv4f64 : VTScalableVec<4, f64, 188>; // n x 4 x f64 vector value
274274
def nxv8f64 : VTScalableVec<8, f64, 189>; // n x 8 x f64 vector value
275275

276276
def x86mmx : ValueType<64, 190>; // X86 MMX value
277-
def FlagVT : ValueType<0, 191> { // Pre-RA sched glue
278-
let LLVMName = "Glue";
279-
}
277+
def Glue : ValueType<0, 191>; // Pre-RA sched glue
280278
def isVoid : ValueType<0, 192>; // Produces no value
281279
def untyped : ValueType<8, 193> { // Produces an untyped value
282280
let LLVMName = "Untyped";

0 commit comments

Comments
 (0)