[llvm] r278652 - [X86] X86ISD::FANDN is not commutative or associative.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Sun Aug 14 21:47:28 PDT 2016


Author: ctopper
Date: Sun Aug 14 23:47:28 2016
New Revision: 278652

URL: http://llvm.org/viewvc/llvm-project?rev=278652&view=rev
Log:
[X86] X86ISD::FANDN is not commutative or associative.

Modified:
    llvm/trunk/lib/Target/X86/X86InstrFragmentsSIMD.td

Modified: llvm/trunk/lib/Target/X86/X86InstrFragmentsSIMD.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrFragmentsSIMD.td?rev=278652&r1=278651&r2=278652&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrFragmentsSIMD.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrFragmentsSIMD.td Sun Aug 14 23:47:28 2016
@@ -56,8 +56,7 @@ def X86for     : SDNode<"X86ISD::FOR",
                         [SDNPCommutative, SDNPAssociative]>;
 def X86fxor    : SDNode<"X86ISD::FXOR",      SDTFPBinOp,
                         [SDNPCommutative, SDNPAssociative]>;
-def X86fandn   : SDNode<"X86ISD::FANDN",     SDTFPBinOp,
-                        [SDNPCommutative, SDNPAssociative]>;
+def X86fandn   : SDNode<"X86ISD::FANDN",     SDTFPBinOp>;
 def X86frsqrt  : SDNode<"X86ISD::FRSQRT",    SDTFPUnaryOp>;
 def X86frcp    : SDNode<"X86ISD::FRCP",      SDTFPUnaryOp>;
 def X86frsqrt14s: SDNode<"X86ISD::FRSQRTS",  SDTFPBinOp>;




More information about the llvm-commits mailing list