diff options
author | Steve Naroff <snaroff@apple.com> | 2007-08-30 18:45:57 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2007-08-30 18:45:57 +0000 |
commit | 6b91cd9af12fe1340e48e03e9b988d9888b4889f (patch) | |
tree | 512a2f7cc0fdb7255c7c58b93e126da72cd213ce /AST/Type.cpp | |
parent | af603f742491dc4707138c0293d295171fdd51ba (diff) |
Diff is self small & self explanatory...
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41621 91177308-0d34-0410-b5e6-96231b3b80d8
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); |