mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 03:29:41 +02:00
* support writing aggregate LLVM constants that are not packed
git-svn-id: branches/debug_eh@42107 -
This commit is contained in:
parent
0cd0e1614b
commit
9f18cbf5d6
@ -1047,7 +1047,10 @@ implementation
|
||||
if not(metadata) then
|
||||
begin
|
||||
writer.AsmWrite(defstr);
|
||||
writer.AsmWrite(' <{');
|
||||
if not(df_llvm_no_struct_packing in hp.def.defoptions) then
|
||||
writer.AsmWrite(' <{')
|
||||
else
|
||||
writer.AsmWrite(' {')
|
||||
end
|
||||
else
|
||||
begin
|
||||
@ -1064,11 +1067,14 @@ implementation
|
||||
end;
|
||||
if not(metadata) then
|
||||
begin
|
||||
writer.AsmWrite('}>');
|
||||
if not(df_llvm_no_struct_packing in hp.def.defoptions) then
|
||||
writer.AsmWrite(' }>')
|
||||
else
|
||||
writer.AsmWrite(' }')
|
||||
end
|
||||
else
|
||||
begin
|
||||
writer.AsmWrite('}');
|
||||
writer.AsmWrite(' }');
|
||||
end;
|
||||
end;
|
||||
tck_array:
|
||||
|
Loading…
Reference in New Issue
Block a user