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 | 4c4234b59cced5eaa363b429f5aed3941b13643b (patch) | |
tree | 703c64ec7c61453cdf37efc828fe0f8db23ccb00 /llvm/lib/CodeGen | |
parent | b46ec99b7eeb0839b5a6bea18f7a4a171b417692 (diff) | |
download | bcm5719-llvm-4c4234b59cced5eaa363b429f5aed3941b13643b.tar.gz bcm5719-llvm-4c4234b59cced5eaa363b429f5aed3941b13643b.zip |
remove an extraneous (and ugly) default argument, thanks Duncan.
llvm-svn: 48117
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 94386c62851..a0d18f84f83 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/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 |