]> granicus.if.org Git - clang/commitdiff
Diff is self small & self explanatory...
authorSteve Naroff <snaroff@apple.com>
Thu, 30 Aug 2007 18:45:57 +0000 (18:45 +0000)
committerSteve Naroff <snaroff@apple.com>
Thu, 30 Aug 2007 18:45:57 +0000 (18:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41621 91177308-0d34-0410-b5e6-96231b3b80d8

AST/Type.cpp

index 126f3d5db98f6e68722f619b2bb22dfe2295f899..4bca030e0d69dd596623f9f5fbace6c249401ebd 100644 (file)
@@ -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);