From: Steve Naroff Date: Thu, 30 Aug 2007 18:45:57 +0000 (+0000) Subject: Diff is self small & self explanatory... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6b91cd9af12fe1340e48e03e9b988d9888b4889f;p=clang 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 126f3d5db9..4bca030e0d 100644 --- a/AST/Type.cpp +++ b/AST/Type.cpp @@ -691,7 +691,7 @@ void ReferenceType::getAsStringInternal(std::string &S) const { void ConstantArrayType::getAsStringInternal(std::string &S) const { S += '['; - S += llvm::utostr_32(getSize().getZExtValue()); + S += llvm::utostr(getSize().getZExtValue()); S += ']'; getElementType().getAsStringInternal(S);