mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 00:09:32 +02:00
Use use_tag_types everywhere to get consistent results for 'Tt' versus 't' for stabs for string definitions
git-svn-id: trunk@42199 -
This commit is contained in:
parent
fe99252a9b
commit
14b9032ef2
@ -1642,7 +1642,7 @@ implementation
|
||||
ss:='';
|
||||
if not assigned(sym.typedef) then
|
||||
internalerror(200509262);
|
||||
if sym.typedef.typ in tagtypes then
|
||||
if use_tag_prefix(sym.typedef) then
|
||||
stabchar:=tagtypeprefix
|
||||
else
|
||||
stabchar:='t';
|
||||
|
@ -158,7 +158,7 @@ implementation
|
||||
declstabnr:=def_stab_number(def)
|
||||
end;
|
||||
if (symname='') or
|
||||
not(def.typ in tagtypes) then
|
||||
not(use_tag_types(def)) then
|
||||
begin
|
||||
st:=def_stabstr_evaluate(def,':$1$2=',[stabchar,declstabnr]);
|
||||
st:='"'+def_stabstr_evaluate(def,symname,[])+st+ss;
|
||||
|
Loading…
Reference in New Issue
Block a user