mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
Minor bugfix for previous checkin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2241 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2761e9f076
commit
ff5c296498
@ -186,7 +186,7 @@ static string calcTypeName(const Type *Ty, vector<const Type *> &TypeStack,
|
||||
break;
|
||||
case Type::ArrayTyID: {
|
||||
const ArrayType *ATy = cast<const ArrayType>(Ty);
|
||||
Result = "[" + itostr(ATy->getNumElements()) + " x ";
|
||||
Result = "[" + utostr(ATy->getNumElements()) + " x ";
|
||||
Result += calcTypeName(ATy->getElementType(), TypeStack, TypeNames) + "]";
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user