mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-10 22:43:53 +00:00
Remove an assumption of default arguments. This is in anticipation of a
change to SelectionDAG build APIs. llvm-svn: 96235
This commit is contained in:
parent
725287f422
commit
ea559af89a
@ -622,12 +622,12 @@ SDValue PIC16TargetLowering::ExpandStore(SDNode *N, SelectionDAG &DAG) {
|
||||
ChainHi = Chain.getOperand(1);
|
||||
}
|
||||
SDValue Store1 = DAG.getStore(ChainLo, dl, SrcLo, Ptr, NULL,
|
||||
0 + StoreOffset);
|
||||
0 + StoreOffset, false, false, 0);
|
||||
|
||||
Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
|
||||
DAG.getConstant(4, Ptr.getValueType()));
|
||||
SDValue Store2 = DAG.getStore(ChainHi, dl, SrcHi, Ptr, NULL,
|
||||
1 + StoreOffset);
|
||||
1 + StoreOffset, false, false, 0);
|
||||
|
||||
return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1,
|
||||
Store2);
|
||||
|
Loading…
x
Reference in New Issue
Block a user