From 6b91cd9af12fe1340e48e03e9b988d9888b4889f Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Thu, 30 Aug 2007 18:45:57 +0000 Subject: [PATCH] Diff is self small & self explanatory... git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41621 91177308-0d34-0410-b5e6-96231b3b80d8 --- AST/Type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1