]> granicus.if.org Git - clang/commitdiff
remove some extraneous spaces, no functionality change.
authorChris Lattner <sabre@nondot.org>
Fri, 13 Jul 2007 21:01:17 +0000 (21:01 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 13 Jul 2007 21:01:17 +0000 (21:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@39832 91177308-0d34-0410-b5e6-96231b3b80d8

AST/Type.cpp

index 07bdd3e1244ae892e15385ff4a3f4ebf5c64d5b1..6e048a4f9019512a7f501ca368450edfa1050611 100644 (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);
 }