Diff is self small & self explanatory...


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41621 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/AST/Type.cpp b/AST/Type.cpp
index 126f3d5..4bca030 100644
--- a/AST/Type.cpp
+++ b/AST/Type.cpp
@@ -691,7 +691,7 @@
 
 void ConstantArrayType::getAsStringInternal(std::string &S) const {
   S += '[';
-  S += llvm::utostr_32(getSize().getZExtValue());
+  S += llvm::utostr(getSize().getZExtValue());
   S += ']';
   
   getElementType().getAsStringInternal(S);