[llvm-commits] [dragonegg] r157916 - /dragonegg/trunk/include/x86/dragonegg/Target.h

Duncan Sands baldrick at free.fr
Mon Jun 4 00:32:11 PDT 2012


Author: baldrick
Date: Mon Jun  4 02:32:11 2012
New Revision: 157916

URL: http://llvm.org/viewvc/llvm-project?rev=157916&view=rev
Log:
The fma3 feature was renamed to fma.

Modified:
    dragonegg/trunk/include/x86/dragonegg/Target.h

Modified: dragonegg/trunk/include/x86/dragonegg/Target.h
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/include/x86/dragonegg/Target.h?rev=157916&r1=157915&r2=157916&view=diff
==============================================================================
--- dragonegg/trunk/include/x86/dragonegg/Target.h (original)
+++ dragonegg/trunk/include/x86/dragonegg/Target.h Mon Jun  4 02:32:11 2012
@@ -305,9 +305,9 @@
       F.AddFeature("cmpxchg16b", false);			\
 								\
     if (TARGET_FMA)						\
-      F.AddFeature("fma3");					\
+      F.AddFeature("fma");					\
     else if (target_flags_explicit & OPTION_MASK_ISA_FMA)	\
-      F.AddFeature("fma3", false);				\
+      F.AddFeature("fma", false);				\
 								\
     if (TARGET_FMA4)						\
       F.AddFeature("fma4");					\





More information about the llvm-commits mailing list