[PATCH] D51228: [X86] Add FeatureCMOV explicitly to all CPUs that support it. Remove FeatureCMOV implication from Feature64Bit and FeatureSSE1

Simon Pilgrim via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 25 04:30:28 PDT 2018


RKSimon added a comment.

Does anything equivalent need to be done in clang?



================
Comment at: lib/Target/X86/X86.td:912
 foreach P = ["athlon", "athlon-tbird"] in {
-  def : Proc<P, [FeatureX87, FeatureSlowUAMem16, Feature3DNowA,
+  def : Proc<P, [FeatureX87, FeatureSlowUAMem16, FeatureCMOV, Feature3DNowA,
                  FeatureNOPL, FeatureSlowSHLD]>;
----------------
Is this an independent fix?


https://reviews.llvm.org/D51228





More information about the llvm-commits mailing list