mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 09:31:03 +03:00
Merge remote-tracking branch 'origin/master' into runtime_compile_v5
This commit is contained in:
commit
ae4db7d3b3
180 changed files with 15036 additions and 10675 deletions
|
@ -642,19 +642,17 @@ void DtoDeclareFunction(FuncDeclaration *fdecl) {
|
|||
++iarg;
|
||||
}
|
||||
|
||||
// TODO: do we need this?
|
||||
if (irFty.arg_objcSelector) {
|
||||
iarg->setName(".objcSelector_arg");
|
||||
irFunc->thisArg = &(*iarg);
|
||||
++iarg;
|
||||
}
|
||||
|
||||
if (passThisBeforeSret) {
|
||||
iarg->setName(".sret_arg");
|
||||
irFunc->sretArg = &(*iarg);
|
||||
++iarg;
|
||||
}
|
||||
|
||||
if (irFty.arg_objcSelector) {
|
||||
iarg->setName(".objcSelector_arg");
|
||||
++iarg;
|
||||
}
|
||||
|
||||
if (irFty.arg_arguments) {
|
||||
iarg->setName("._arguments");
|
||||
irFunc->_arguments = &(*iarg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue