aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-04-28 18:28:49 +0000
committerDan Gohman <gohman@apple.com>2008-04-28 18:28:49 +0000
commitebc3a3a3b2adb3bf5a1dae0c0e6572be79375efd (patch)
treecb19ed3ce751eb1bf3eb6651398f5fdcd93fffc7 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parent10a6b7ab656ddce1acfa1216311d2564edaecbe3 (diff)
Delete an unused constructor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index 93de652398..496051f551 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -153,9 +153,6 @@ namespace {
RegsForValue() : TLI(0) {}
RegsForValue(const TargetLowering &tli,
- unsigned Reg, MVT::ValueType regvt, MVT::ValueType valuevt)
- : TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(1, Reg) {}
- RegsForValue(const TargetLowering &tli,
const SmallVector<unsigned, 4> &regs,
MVT::ValueType regvt, MVT::ValueType valuevt)
: TLI(&tli), ValueVTs(1, valuevt), RegVTs(1, regvt), Regs(regs) {}