mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Properly ignore S_FILESTATIC in EvaluateLocation
This commit is contained in:
parent
bab233746e
commit
ec83ae50fa
1 changed files with 6 additions and 1 deletions
|
@ -6385,7 +6385,12 @@ intptr COFF::EvaluateLocation(DbgSubprogram* dwSubprogram, const uint8* locData,
|
||||||
{
|
{
|
||||||
inlineDepth++;
|
inlineDepth++;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case S_FILESTATIC:
|
||||||
|
{
|
||||||
|
FILESTATICSYM& fileStaticSym = *(FILESTATICSYM*)dataStart;
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (!mFailed)
|
if (!mFailed)
|
||||||
Fail(StrFormat("Unknown symbol type '0x%X' in EvaluateLocation", symType));
|
Fail(StrFormat("Unknown symbol type '0x%X' in EvaluateLocation", symType));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue