mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 00:55:49 +03:00
Rename IrFunction::retArg to sretArg
This commit is contained in:
parent
879fb97d56
commit
cdb817633e
4 changed files with 7 additions and 7 deletions
|
@ -547,7 +547,7 @@ void DtoDeclareFunction(FuncDeclaration *fdecl) {
|
|||
|
||||
if (irFty.arg_sret && !passThisBeforeSret) {
|
||||
iarg->setName(".sret_arg");
|
||||
irFunc->retArg = &(*iarg);
|
||||
irFunc->sretArg = &(*iarg);
|
||||
++iarg;
|
||||
}
|
||||
|
||||
|
@ -585,7 +585,7 @@ void DtoDeclareFunction(FuncDeclaration *fdecl) {
|
|||
|
||||
if (passThisBeforeSret) {
|
||||
iarg->setName(".sret_arg");
|
||||
irFunc->retArg = &(*iarg);
|
||||
irFunc->sretArg = &(*iarg);
|
||||
++iarg;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue