I guess I can handle large type sizes.

llvm-svn: 26452
This commit is contained in:
Jim Laskey 2006-03-01 18:13:05 +00:00
parent b9ac4cba66
commit 1246d5c054
1 changed files with 1 additions and 2 deletions

View File

@ -1058,8 +1058,7 @@ DIE *DwarfWriter::NewType(CompileUnit *Unit, TypeDesc *TyDesc) {
// Get core information.
const std::string &Name = TyDesc->getName();
// FIXME - handle larger sizes.
unsigned Size = TyDesc->getSize() >> 3;
uint64_t Size = TyDesc->getSize() >> 3;
DIE *Ty = NULL;