aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/SelectionDAGNodes.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-04-09 23:53:31 +0000
committerDan Gohman <gohman@apple.com>2009-04-09 23:53:31 +0000
commit32bbe650e845321fccf4e83ec7c8e6e057ab23b5 (patch)
tree4d9fbfd7d83488e6e8ec4ca2439430638e5340c6 /include/llvm/CodeGen/SelectionDAGNodes.h
parent3f94b4106c44640306f2448ffad7a69aea665734 (diff)
downloadexternal_llvm-32bbe650e845321fccf4e83ec7c8e6e057ab23b5.zip
external_llvm-32bbe650e845321fccf4e83ec7c8e6e057ab23b5.tar.gz
external_llvm-32bbe650e845321fccf4e83ec7c8e6e057ab23b5.tar.bz2
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
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index 7d74825..5156349 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -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