aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/CBackend/CBackend.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/CBackend/CBackend.cpp')
-rw-r--r--lib/Target/CBackend/CBackend.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/Target/CBackend/CBackend.cpp b/lib/Target/CBackend/CBackend.cpp
index 3b28484a90..e02f6bc8a2 100644
--- a/lib/Target/CBackend/CBackend.cpp
+++ b/lib/Target/CBackend/CBackend.cpp
@@ -519,9 +519,9 @@ std::ostream &CWriter::printType(std::ostream &Out, const Type *Ty,
case Type::VectorTyID: {
const VectorType *VTy = cast<VectorType>(Ty);
- unsigned NumElements = VTy->getNumElements();
return printType(Out, VTy->getElementType(), false,
- NameSoFar + "[" + utostr(NumElements) + "]");
+ NameSoFar + " __attribute__((vector_size(" +
+ utostr(TD->getABITypeSize(VTy)) + " ))) ");
}
case Type::OpaqueTyID: {
@@ -991,6 +991,10 @@ void CWriter::printConstant(Constant *CPV) {
break;
case Type::VectorTyID:
+ // Use C99 compound expression literal initializer syntax.
+ Out << "(";
+ printType(Out, CPV->getType());
+ Out << ")";
if (ConstantVector *CV = cast<ConstantVector>(CPV)) {
printConstantVector(CV);
} else {