From dc5289bce881e73a744d04f7ab1350de1425bd8e Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Sun, 12 Mar 2017 03:37:32 +0000 Subject: [PATCH] [AVX-512] Remove unused field in X86VectorVTInfo tablegen class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297572 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86InstrAVX512.td | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/Target/X86/X86InstrAVX512.td b/lib/Target/X86/X86InstrAVX512.td index 34f655bbf5b..e864af0d4bb 100644 --- a/lib/Target/X86/X86InstrAVX512.td +++ b/lib/Target/X86/X86InstrAVX512.td @@ -34,13 +34,6 @@ class X86VectorVTInfo(!if (!eq (NumElts, 1), "i1", "v" # NumElts # "i1")); - // The GPR register class that can hold the write mask. Use GR8 for fewer - // than 8 elements. Use shift-right and equal to work around the lack of - // !lt in tablegen. - RegisterClass MRC = - !cast("GR" # - !if (!eq (!srl(NumElts, 3), 0), 8, NumElts)); - // Suffix used in the instruction mnemonic. string Suffix = suffix; -- 2.50.1