diff options
| author | David Greene <greened@obbligato.org> | 2010-02-15 16:56:34 +0000 |
|---|---|---|
| committer | David Greene <greened@obbligato.org> | 2010-02-15 16:56:34 +0000 |
| commit | 2138b0fc9047bf0f918e85f27a58a337c4195c65 (patch) | |
| tree | 0048fa705961be0832d77d368f2c2214efb4658a /llvm/lib | |
| parent | 27d044d65dc21cb9296bb59c0a6c542424c71401 (diff) | |
| download | bcm5719-llvm-2138b0fc9047bf0f918e85f27a58a337c4195c65.tar.gz bcm5719-llvm-2138b0fc9047bf0f918e85f27a58a337c4195c65.zip | |
Remove an assumption of default arguments. This is in anticipation of a
change to SelectionDAG build APIs.
llvm-svn: 96235
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/PIC16/PIC16ISelLowering.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16ISelLowering.cpp b/llvm/lib/Target/PIC16/PIC16ISelLowering.cpp index 7754a4f1458..92b5c7b253b 100644 --- a/llvm/lib/Target/PIC16/PIC16ISelLowering.cpp +++ b/llvm/lib/Target/PIC16/PIC16ISelLowering.cpp @@ -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); |

