commit | 957d2c3e976da9f11eb43bf54f852012227d30d3 | [log] [tgz] |
---|---|---|
author | Anton Korobeynikov <asl@math.spbu.ru> | Sat Dec 19 02:04:00 2009 +0000 |
committer | Anton Korobeynikov <asl@math.spbu.ru> | Sat Dec 19 02:04:00 2009 +0000 |
tree | 1d3f377e32e253ab25661d77bde3dd6e1c38cf75 | |
parent | ef4b761175b317411bdf9223e59124dbdf6d3545 [diff] |
Use 4-arg getVTList) variant instead of generic one, when possible git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91744 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 1f82791..b8d6edb 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -4251,6 +4251,7 @@ 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; }