mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-12 15:51:35 +00:00
adc and sbb need an incoming flag to ensure it reads the carry flag
from add / sub. llvm-svn: 25444
This commit is contained in:
parent
8d6787c392
commit
cfe9d47379
@ -63,8 +63,9 @@ def X86addflag : SDNode<"X86ISD::ADD_FLAG", SDTIntBinOp ,
|
||||
def X86subflag : SDNode<"X86ISD::SUB_FLAG", SDTIntBinOp,
|
||||
[SDNPOutFlag]>;
|
||||
def X86adc : SDNode<"X86ISD::ADC" , SDTIntBinOp ,
|
||||
[SDNPCommutative, SDNPAssociative]>;
|
||||
def X86sbb : SDNode<"X86ISD::SBB" , SDTIntBinOp>;
|
||||
[SDNPCommutative, SDNPAssociative, SDNPInFlag]>;
|
||||
def X86sbb : SDNode<"X86ISD::SBB" , SDTIntBinOp,
|
||||
[SDNPInFlag]>;
|
||||
|
||||
def X86shld : SDNode<"X86ISD::SHLD", SDTIntShiftDOp>;
|
||||
def X86shrd : SDNode<"X86ISD::SHRD", SDTIntShiftDOp>;
|
||||
|
Loading…
x
Reference in New Issue
Block a user