projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d58b64
)
Remove an assumption of default arguments. This is in anticipation of a
author
David Greene
<greened@obbligato.org>
Mon, 15 Feb 2010 16:56:34 +0000
(16:56 +0000)
committer
David Greene
<greened@obbligato.org>
Mon, 15 Feb 2010 16:56:34 +0000
(16:56 +0000)
change to SelectionDAG build APIs.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96235
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/PIC16/PIC16ISelLowering.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/PIC16/PIC16ISelLowering.cpp
b/lib/Target/PIC16/PIC16ISelLowering.cpp
index 7754a4f1458897a05340bf2f166116daa4a59289..92b5c7b253b0a2d5c0a8909df7cefec6691f9717 100644
(file)
--- a/
lib/Target/PIC16/PIC16ISelLowering.cpp
+++ b/
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);