* simplified (incomplete) implementation of g_concatcopy() that simply calls

a_load_ref_ref (the llvm memcpy intrinsic can be lowered into a libc call,
    so we can't use it)

git-svn-id: branches/hlcgllvm@27004 -
This commit is contained in:
Jonas Maebe 2014-03-06 21:41:43 +00:00
parent 366baac98d
commit 161647f965

View File

@ -584,8 +584,7 @@ implementation
procedure thlcgllvm.g_concatcopy(list: TAsmList; size: tdef; const source, dest: treference);
begin
{ todo }
inherited;
a_load_ref_ref(list,size,size,source,dest);
end;