aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/CBackend/CBackend.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-03-02 03:18:46 +0000
committerChris Lattner <sabre@nondot.org>2008-03-02 03:18:46 +0000
commit0a3d4d971de92ef6d78d642609c4cc32b458a954 (patch)
treec1cdddb5de14a6ff8c6e25c67c68f7d793f4a98a /lib/Target/CBackend/CBackend.cpp
parentc8b6d339d799654f690da35a553e95f309b3427a (diff)
rename PT -> VT for VectorTypes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r--lib/Target/CBackend/CBackend.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp
index c1a101475c..3b28484a90 100644
--- a/lib/Target/CBackend/CBackend.cpp
+++ b/lib/Target/CBackend/CBackend.cpp
@@ -518,10 +518,9 @@ std::ostream &CWriter::printType(std::ostream &Out, const Type *Ty,
}
case Type::VectorTyID: {
- const VectorType *PTy = cast<VectorType>(Ty);
- unsigned NumElements = PTy->getNumElements();
- if (NumElements == 0) NumElements = 1;
- return printType(Out, PTy->getElementType(), false,
+ const VectorType *VTy = cast<VectorType>(Ty);
+ unsigned NumElements = VTy->getNumElements();
+ return printType(Out, VTy->getElementType(), false,
NameSoFar + "[" + utostr(NumElements) + "]");
}
@@ -972,8 +971,8 @@ void CWriter::printConstant(Constant *CPV) {
}
case Type::ArrayTyID:
- if (const ConstantArray *CA = cast<ConstantArray>(CPV)) {
- printConstantVector(CA);
+ if (ConstantArray *CA = cast<ConstantArray>(CPV)) {
+ printConstantArray(CA);
} else {
assert(isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV));
const ArrayType *AT = cast<ArrayType>(CPV->getType());
@@ -992,7 +991,7 @@ void CWriter::printConstant(Constant *CPV) {
break;
case Type::VectorTyID:
- if (const ConstantVector *CV = cast<ConstantVector>(CPV)) {
+ if (ConstantVector *CV = cast<ConstantVector>(CPV)) {
printConstantVector(CV);
} else {
assert(isa<ConstantAggregateZero>(CPV) || isa<UndefValue>(CPV));
@@ -1000,7 +999,7 @@ void CWriter::printConstant(Constant *CPV) {
Out << "{ ";
Constant *CZ = Constant::getNullValue(VT->getElementType());
printConstant(CZ);
- for (unsigned i = 1, e = AT->getNumElements(); i != e; ++i) {
+ for (unsigned i = 1, e = VT->getNumElements(); i != e; ++i) {
Out << ", ";
printConstant(CZ);
}