Change the NumVTs field from short to int, since there's no
authorDan Gohman <gohman@apple.com>
Thu, 9 Apr 2009 23:53:31 +0000 (23:53 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 9 Apr 2009 23:53:31 +0000 (23:53 +0000)
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

index 7d748259cfacc4f3041419a779fc5d77e80d2fdd..515634908af448906f7e9de0e43710ab83a941d8 100644 (file)
@@ -52,7 +52,7 @@ template <typename T> 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