forked from OSchip/llvm-project
remove some extraneous spaces, no functionality change.
llvm-svn: 39832
This commit is contained in:
parent
388cf760e2
commit
2ce5dd4c98
|
@ -564,10 +564,10 @@ void ArrayType::getAsStringInternal(std::string &S) const {
|
||||||
}
|
}
|
||||||
|
|
||||||
void VectorType::getAsStringInternal(std::string &S) const {
|
void VectorType::getAsStringInternal(std::string &S) const {
|
||||||
S += " __attribute__(( vector_size(";
|
S += " __attribute__((vector_size(";
|
||||||
// FIXME: handle types that are != 32 bits.
|
// FIXME: should multiply by element size somehow.
|
||||||
S += llvm::utostr_32(NumElements*4); // convert back to bytes.
|
S += llvm::utostr_32(NumElements*4); // convert back to bytes.
|
||||||
S += ") ))";
|
S += ")))";
|
||||||
ElementType.getAsStringInternal(S);
|
ElementType.getAsStringInternal(S);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue