mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Improved some PDB failure cases
This commit is contained in:
parent
bf5c19269b
commit
b2eac81857
3 changed files with 24 additions and 2 deletions
|
@ -764,7 +764,7 @@ DbgSubprogram* COFF::CvParseMethod(DbgType* parentType, const char* methodName,
|
|||
}
|
||||
else
|
||||
{
|
||||
BF_FATAL("Unhandled func type");
|
||||
Fail(StrFormat("Unhandled func type at tagId %d ipi %d", tagIdx, ipi));
|
||||
}
|
||||
|
||||
|
||||
|
@ -1169,7 +1169,7 @@ void COFF::CvParseMembers(DbgType* parentType, int tagIdx, bool ipi)
|
|||
}
|
||||
break;
|
||||
default:
|
||||
BF_FATAL("Unhandled");
|
||||
HardFail(StrFormat("Unhandled leaf id 0x%X", leafType));
|
||||
}
|
||||
|
||||
PTR_ALIGN(data, sectionStart, 4);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue