Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 13093 - D ABI change for guaranteed efficient return of fixed size array #611

Merged
merged 1 commit into from
Nov 27, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions abi.dd
Original file line number Diff line number Diff line change
Expand Up @@ -653,12 +653,12 @@ $(SECTION4 Return Value,
$(LI Delegates are returned with the pointer to the function
in EDX and the context pointer in EAX.)

$(LI 1, 2 and 4 byte structs are returned in EAX.)
$(LI 1, 2 and 4 byte structs and static arrays are returned in EAX.)

$(LI 8 byte structs are returned in EDX,EAX, where
$(LI 8 byte structs and static arrays are returned in EDX,EAX, where
EDX gets the most significant half.)

$(LI For other struct sizes,
$(LI For other sized structs and static arrays,
the return value is stored through a hidden pointer passed as
an argument to the function.)

Expand Down