diff options
author | Owen Anderson <resistor@mac.com> | 2009-08-11 21:59:30 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-08-11 21:59:30 +0000 |
commit | 766b5efd99c01e26f00f22d81b57d1385b3d2ab0 (patch) | |
tree | ef271d142f40bf61263d72b6ea95cc7b58b2e908 /include/llvm/CodeGen/ValueTypes.h | |
parent | a1a1f02708261aedd2e74d4a11c129f9bbc39716 (diff) |
Fix warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78725 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/ValueTypes.h')
-rw-r--r-- | include/llvm/CodeGen/ValueTypes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/ValueTypes.h b/include/llvm/CodeGen/ValueTypes.h index e6d1f49591..283c6a32c7 100644 --- a/include/llvm/CodeGen/ValueTypes.h +++ b/include/llvm/CodeGen/ValueTypes.h @@ -334,9 +334,9 @@ namespace llvm { const Type *LLVMTy; public: - EVT() : V((MVT::SimpleValueType)(MVT::LastSimpleValueType+1)) {} - EVT(MVT::SimpleValueType SVT) : V(SVT) { } - EVT(MVT S) : V(S) {} + EVT() : V((MVT::SimpleValueType)(MVT::LastSimpleValueType+1)), LLVMTy(0) {} + EVT(MVT::SimpleValueType SVT) : V(SVT), LLVMTy(0) { } + EVT(MVT S) : V(S), LLVMTy(0) {} bool operator==(const EVT VT) const { if (V.SimpleTy == VT.V.SimpleTy) { |