From: Chris Lattner Date: Fri, 13 Jul 2007 21:01:17 +0000 (+0000) Subject: remove some extraneous spaces, no functionality change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e107b5d1b3d3527b1f493ed5341e87614b36c376;p=clang remove some extraneous spaces, no functionality change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39832 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/AST/Type.cpp b/AST/Type.cpp index 07bdd3e124..6e048a4f90 100644 --- a/AST/Type.cpp +++ b/AST/Type.cpp @@ -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); }