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 | 96d0b96930844d116fcde59f0d97dd0d41f8fb97 (patch) | |
tree | 50b9425ee59059714dce64e58e9267de21303e0a /lib/CodeGen | |
parent | a4adf351b67c72f8b298cdaefccb5c1a5b037a07 (diff) | |
download | external_llvm-96d0b96930844d116fcde59f0d97dd0d41f8fb97.zip external_llvm-96d0b96930844d116fcde59f0d97dd0d41f8fb97.tar.gz external_llvm-96d0b96930844d116fcde59f0d97dd0d41f8fb97.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
Diffstat (limited to 'lib/CodeGen')
-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 |