diff options
author | Chris Lattner <sabre@nondot.org> | 2008-03-09 20:04:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-03-09 20:04:36 +0000 |
commit | 4c55c633d9fd795e0e39642daa07e592c7a285aa (patch) | |
tree | 50b9425ee59059714dce64e58e9267de21303e0a | |
parent | 7a0690d1b666d3e7e3d9ab8f872717729a7d1611 (diff) | |
download | external_llvm-4c55c633d9fd795e0e39642daa07e592c7a285aa.zip external_llvm-4c55c633d9fd795e0e39642daa07e592c7a285aa.tar.gz external_llvm-4c55c633d9fd795e0e39642daa07e592c7a285aa.tar.bz2 |
remove an extraneous (and ugly) default argument, thanks Duncan.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48117 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 94386c6..a0d18f8 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -3266,8 +3266,7 @@ SDOperand RegsForValue::getCopyFromRegs(SelectionDAG &DAG, } // Assemble the legal parts into the final value. - return getCopyFromParts(DAG, &Parts[0], NumParts, RegVT, ValueVT, - ISD::DELETED_NODE); + return getCopyFromParts(DAG, &Parts[0], NumParts, RegVT, ValueVT); } /// getCopyToRegs - Emit a series of CopyToReg nodes that copies the |