revert this, it isn't safe.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113088 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AST/TypePrinter.cpp b/lib/AST/TypePrinter.cpp
index a70fe77..d3a6b64 100644
--- a/lib/AST/TypePrinter.cpp
+++ b/lib/AST/TypePrinter.cpp
@@ -91,7 +91,8 @@
     S = T->getName(Policy.LangOpts);
   } else {
     // Prefix the basic type, e.g. 'int X'.
-    S = T->getName(Policy.LangOpts) + ' ' + S;
+    S = ' ' + S;
+    S = T->getName(Policy.LangOpts) + S;
   }
 }