[PATCH] D13980: Add "x87" in x86 target feature map

Andrey Turetskiy via cfe-commits cfe-commits at lists.llvm.org
Thu Nov 19 07:52:45 PST 2015


aturetsk added a comment.

Hello Richard,
Thank for the review.


================
Comment at: lib/Basic/Targets.cpp:2538-2539
@@ -2537,1 +2537,4 @@
 
+  // All X86 processors but i386 have X87.
+  if (getCPUKind(CPU) != CK_i386)
+    setFeatureEnabledImpl(Features, "x87", true);
----------------
You are right. Fixed.


http://reviews.llvm.org/D13980





More information about the cfe-commits mailing list