mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-22 13:29:44 +00:00
Favor FMA3 over FMA4 if both are enabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162454 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a00b80b04c
commit
9b54141cae
@ -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