[llvm-commits] [llvm] r68742 - /llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Dan Gohman gohman at apple.com
Thu Apr 9 16:53:32 PDT 2009


Author: djg
Date: Thu Apr  9 18:53:31 2009
New Revision: 68742

URL: http://llvm.org/viewvc/llvm-project?rev=68742&view=rev
Log:
Change the NumVTs field from short to int, since there's no
real need for it to be short.

Modified:
    llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h

Modified: llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h?rev=68742&r1=68741&r2=68742&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h (original)
+++ llvm/trunk/include/llvm/CodeGen/SelectionDAGNodes.h Thu Apr  9 18:53:31 2009
@@ -52,7 +52,7 @@
 ///
 struct SDVTList {
   const MVT *VTs;
-  unsigned short NumVTs;
+  unsigned int NumVTs;
 };
 
 /// ISD namespace - This namespace contains an enum which represents all of the





More information about the llvm-commits mailing list