mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-06 05:10:52 +02:00
* fixed writing non-default linkage and visibility of llvm alias declarations
git-svn-id: trunk@31051 -
This commit is contained in:
parent
1019a6b090
commit
4eea652576
@ -938,7 +938,7 @@ implementation
|
||||
if taillvmalias(hp).linkage<>lll_default then
|
||||
begin
|
||||
str(taillvmalias(hp).linkage, s);
|
||||
asmwrite(copy(s, length('lll_'), 255));
|
||||
asmwrite(copy(s, length('lll_')+1, 255));
|
||||
asmwrite(' ');
|
||||
end
|
||||
else
|
||||
@ -946,7 +946,7 @@ implementation
|
||||
if taillvmalias(hp).vis<>llv_default then
|
||||
begin
|
||||
str(taillvmalias(hp).vis, s);
|
||||
asmwrite(copy(s, length('llv_'), 255));
|
||||
asmwrite(copy(s, length('llv_')+1, 255));
|
||||
asmwrite(' ');
|
||||
end;
|
||||
asmwrite(llvmencodeproctype(tabstractprocdef(taillvmalias(hp).def), '', lpd_alias));
|
||||
|
Loading…
Reference in New Issue
Block a user