diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-01 04:55:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-01 04:55:59 +0000 |
commit | fea997aac5773e936754de5436029c2a4fa1e930 (patch) | |
tree | 55d1b9167dc9c2444cc9a7dfb42d9b39ed75f7ae /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | e0c2b6b9a8ac874c7b57e445ff1513f0e37581f4 (diff) |
Fit in 80 columns
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33745 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 8bed6f7a26..24b49b246c 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -1577,7 +1577,8 @@ SDOperand SelectionDAG::getLoad(MVT::ValueType VT, } SDOperand SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT::ValueType VT, - SDOperand Chain, SDOperand Ptr, const Value *SV, + SDOperand Chain, SDOperand Ptr, + const Value *SV, int SVOffset, MVT::ValueType EVT, bool isVolatile) { // If they are asking for an extending load from/to the same thing, return a @@ -2228,7 +2229,8 @@ SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT, return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2).Val; } SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT, - SDOperand Op1, SDOperand Op2, SDOperand Op3) { + SDOperand Op1, SDOperand Op2, + SDOperand Op3) { return getNode(ISD::BUILTIN_OP_END+Opcode, VT, Op1, Op2, Op3).Val; } SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT::ValueType VT, |