mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 02:29:52 +00:00
Don't remember types for spans if no debug info is requested.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5254 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
913db79017
commit
cc486bb4f5
@ -204,8 +204,11 @@ static Span* MergeSpan (Span* S)
|
||||
|
||||
void SetSpanType (Span* S, const StrBuf* Type)
|
||||
/* Set the generic type of the span to Type */
|
||||
{
|
||||
S->Type = GetStrBufId (Type);
|
||||
{
|
||||
/* Ignore the call if we won't generate debug infos */
|
||||
if (DbgSyms) {
|
||||
S->Type = GetStrBufId (Type);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -351,7 +354,7 @@ static int CollectSpans (void* Entry, void* Data)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void WriteSpans (void)
|
||||
/* Write all spans to the object file */
|
||||
|
Loading…
Reference in New Issue
Block a user