From: Craig Topper Date: Mon, 11 Mar 2019 06:01:00 +0000 (+0000) Subject: [X86] Use 'UseAVX' in place of 'HasAVX, NoAVX512'. NFC X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=27eb754d246eea8bc46502542dce414c8bd16616;p=llvm [X86] Use 'UseAVX' in place of 'HasAVX, NoAVX512'. NFC They mean the same thing, but 'HasAVX, NoAVX512' only appears in this one place. Every other place uses UseAVX. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@355808 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td index f7a20aa2194..783c246aadf 100644 --- a/lib/Target/X86/X86InstrSSE.td +++ b/lib/Target/X86/X86InstrSSE.td @@ -5801,7 +5801,7 @@ let Predicates = [HasAVX, NoVLX] in { VEX, VEX_L, VEX_WIG; } } -let Predicates = [HasAVX, NoAVX512] in { +let Predicates = [UseAVX] in { defm VROUND : sse41_fp_binop_s<0x0A, 0x0B, "vround", SchedWriteFRnd.Scl, v4f32, v2f64, X86RndScales, 0>, VEX_4V, VEX_LIG, VEX_WIG;