From 168840662e66ef8eaff6cd6a9389c4451f606e73 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 9 Apr 2009 23:53:31 +0000 Subject: [PATCH] Change the NumVTs field from short to int, since there's no real need for it to be short. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68742 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/SelectionDAGNodes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 7d748259cfa..515634908af 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -52,7 +52,7 @@ template struct ilist_traits; /// struct SDVTList { const MVT *VTs; - unsigned short NumVTs; + unsigned int NumVTs; }; /// ISD namespace - This namespace contains an enum which represents all of the