Use 4-arg getVTList) variant instead of generic one, when possible

llvm-svn: 91744
This commit is contained in:
Anton Korobeynikov 2009-12-19 02:04:00 +00:00
parent b65e2548c8
commit 682c6a3b74

View File

@ -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;
}