summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-12-19 02:04:00 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-12-19 02:04:00 +0000
commit10590171fa1b807d4246999b681d282ba09d60d2 (patch)
tree965da78f2d4cb4265c4ce6e027a52ff5780fb8a4 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parenta73df58110781901f1a4872932423f1e0c482545 (diff)
downloadbcm5719-llvm-10590171fa1b807d4246999b681d282ba09d60d2.tar.gz
bcm5719-llvm-10590171fa1b807d4246999b681d282ba09d60d2.zip
Use 4-arg getVTList) variant instead of generic one, when possible
llvm-svn: 91744
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 1f827914c75..b8d6edbbc13 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -4251,6 +4251,7 @@ SDVTList SelectionDAG::getVTList(const EVT *VTs, unsigned NumVTs) {
case 1: return getVTList(VTs[0]);
case 2: return getVTList(VTs[0], VTs[1]);
case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
+ case 4: return getVTList(VTs[0], VTs[1], VTs[2], VTs[3]);
default: break;
}
OpenPOWER on IntegriCloud