mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-03 00:01:39 +00:00
Favor FMA3 over FMA4 if both are enabled.
llvm-svn: 162454
This commit is contained in:
parent
98218ea1ef
commit
3d4254e5b4
@ -205,7 +205,8 @@ public:
|
||||
bool hasAES() const { return HasAES; }
|
||||
bool hasPCLMUL() const { return HasPCLMUL; }
|
||||
bool hasFMA() const { return HasFMA; }
|
||||
bool hasFMA4() const { return HasFMA4; }
|
||||
// FIXME: Favor FMA when both are enabled. Is this right?
|
||||
bool hasFMA4() const { return HasFMA4 && !HasFMA; }
|
||||
bool hasXOP() const { return HasXOP; }
|
||||
bool hasMOVBE() const { return HasMOVBE; }
|
||||
bool hasRDRAND() const { return HasRDRAND; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user