diff options
Diffstat (limited to 'AST/Type.cpp')
-rw-r--r-- | AST/Type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |