Fixes for closures

This commit is contained in:
Alexey Prokhin
2010-12-15 17:05:16 +03:00
parent 73c851762b
commit 71f653f19b
7 changed files with 62 additions and 12 deletions

View File

@@ -778,6 +778,11 @@ size_t getTypePaddedSize(const LLType* t)
return sz;
}
size_t getTypeAllocSize(const LLType* t)
{
return gTargetData->getTypeAllocSize(t);
}
unsigned char getABITypeAlign(const LLType* t)
{
return gTargetData->getABITypeAlignment(t);