remove some extraneous spaces, no functionality change.

llvm-svn: 39832
This commit is contained in:
Chris Lattner 2007-07-13 21:01:17 +00:00
parent 388cf760e2
commit 2ce5dd4c98
1 changed files with 3 additions and 3 deletions

View File

@ -564,10 +564,10 @@ void ArrayType::getAsStringInternal(std::string &S) const {
}
void VectorType::getAsStringInternal(std::string &S) const {
S += " __attribute__(( vector_size(";
// FIXME: handle types that are != 32 bits.
S += " __attribute__((vector_size(";
// FIXME: should multiply by element size somehow.
S += llvm::utostr_32(NumElements*4); // convert back to bytes.
S += ") ))";
S += ")))";
ElementType.getAsStringInternal(S);
}