diff options
author | Dan Gohman <gohman@apple.com> | 2008-12-08 07:10:54 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-12-08 07:10:54 +0000 |
commit | 149cfc35197229d229c5737046210b5ade06e557 (patch) | |
tree | 8267084d313e44ec7dcf00e92eddec26cfc010dd /lib/VMCore | |
parent | f923129fc30a8a2c2c0948131dd6458af4ae10ee (diff) | |
download | external_llvm-149cfc35197229d229c5737046210b5ade06e557.zip external_llvm-149cfc35197229d229c5737046210b5ade06e557.tar.gz external_llvm-149cfc35197229d229c5737046210b5ade06e557.tar.bz2 |
Make ConstantAggregateZero::get return a ConstantAggregateZero*,
as suggested in PR3182.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Constants.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index 55b8700..5fc08dc 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -1268,7 +1268,7 @@ static ManagedStatic<ValueMap<char, Type, static char getValType(ConstantAggregateZero *CPZ) { return 0; } -Constant *ConstantAggregateZero::get(const Type *Ty) { +ConstantAggregateZero *ConstantAggregateZero::get(const Type *Ty) { assert((isa<StructType>(Ty) || isa<ArrayType>(Ty) || isa<VectorType>(Ty)) && "Cannot create an aggregate zero of non-aggregate type!"); return AggZeroConstants->getOrCreate(Ty, 0); |