mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 23:48:56 +00:00
Remove hasSSE1orAVX(). It's the same as hasXMM().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@146246 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5d73448bb7
commit
85abb2700d
lib/Target/X86
@ -337,7 +337,7 @@ class VPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
|
||||
class VoPSI<bits<8> o, Format F, dag outs, dag ins, string asm,
|
||||
list<dag> pattern>
|
||||
: I<o, F, outs, ins, asm, pattern, SSEPackedSingle>, TB,
|
||||
Requires<[HasSSE1orAVX]>;
|
||||
Requires<[HasXMM]>;
|
||||
|
||||
// SSE2 Instruction Templates:
|
||||
//
|
||||
|
@ -476,8 +476,6 @@ def HasAVX2 : Predicate<"Subtarget->hasAVX2()">;
|
||||
def HasXMM : Predicate<"Subtarget->hasXMM()">;
|
||||
def HasXMMInt : Predicate<"Subtarget->hasXMMInt()">;
|
||||
|
||||
def HasSSE1orAVX : Predicate<"Subtarget->hasSSE1orAVX()">;
|
||||
|
||||
def HasPOPCNT : Predicate<"Subtarget->hasPOPCNT()">;
|
||||
def HasAES : Predicate<"Subtarget->hasAES()">;
|
||||
def HasCLMUL : Predicate<"Subtarget->hasCLMUL()">;
|
||||
|
@ -193,7 +193,6 @@ public:
|
||||
bool hasAVX2() const { return HasAVX2; }
|
||||
bool hasXMM() const { return hasSSE1() || hasAVX(); }
|
||||
bool hasXMMInt() const { return hasSSE2() || hasAVX(); }
|
||||
bool hasSSE1orAVX() const { return hasSSE1() || hasAVX(); }
|
||||
bool hasSSE3orAVX() const { return hasSSE3() || hasAVX(); }
|
||||
bool hasSSSE3orAVX() const { return hasSSSE3() || hasAVX(); }
|
||||
bool hasSSE41orAVX() const { return hasSSE41() || hasAVX(); }
|
||||
|
Loading…
Reference in New Issue
Block a user