mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
C++, CBE, and TLOF support for ConstantDataSequential
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148805 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -2048,7 +2048,8 @@ static bool isAllZeros(StringRef Arr) {
|
||||
/// we *want* an underlying "char*" to avoid TBAA type punning violations.
|
||||
Constant *ConstantDataSequential::getImpl(StringRef Elements, Type *Ty) {
|
||||
assert(isElementTypeCompatible(cast<SequentialType>(Ty)->getElementType()));
|
||||
// If the elements are all zero, return a CAZ, which is more dense.
|
||||
// If the elements are all zero or there are no elements, return a CAZ, which
|
||||
// is more dense and canonical.
|
||||
if (isAllZeros(Elements))
|
||||
return ConstantAggregateZero::get(Ty);
|
||||
|
||||
|
Reference in New Issue
Block a user