diff options
author | Craig Topper <craig.topper@gmail.com> | 2012-08-24 04:03:22 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2012-08-24 04:03:22 +0000 |
commit | 0e292376d09223d791ed2ccc8935e98cbd36f1f8 (patch) | |
tree | 33e053a1f4df71685d3e97d5c99d8b7ddde23605 /lib/Target/X86/X86Subtarget.h | |
parent | 873cf0a0d7906083578d9b793008348750636138 (diff) |
Custom lower FMA intrinsics to target specific nodes and remove the patterns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162534 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86Subtarget.h')
-rw-r--r-- | lib/Target/X86/X86Subtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86Subtarget.h b/lib/Target/X86/X86Subtarget.h index 3280ce52fd..8d3797ec3b 100644 --- a/lib/Target/X86/X86Subtarget.h +++ b/lib/Target/X86/X86Subtarget.h @@ -205,7 +205,7 @@ public: bool hasAES() const { return HasAES; } bool hasPCLMUL() const { return HasPCLMUL; } bool hasFMA() const { return HasFMA; } - // FIXME: Favor FMA when both are enabled. Is this right? + // FIXME: Favor FMA when both are enabled. Is this the right thing to do? bool hasFMA4() const { return HasFMA4 && !HasFMA; } bool hasXOP() const { return HasXOP; } bool hasMOVBE() const { return HasMOVBE; } |