[Issue 17385] Too much commands

2020-11-08 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

Mathias LANG  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||pro.mathias.l...@gmail.com
 Resolution|--- |WONTFIX

--- Comment #8 from Mathias LANG  ---
I'm going to close this as not actionable. Asking for a specific set of
instructions to be output is not quite a bug report.

As mentioned, one can use `-O`, and/or `-inline`, or one of the other compilers
(GDC, LDC), if the output code is not satisfactory. If this is part of a bigger
issue, please re-open with the details.

--


[Issue 17385] Too much commands

2020-03-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

Basile-z  changed:

   What|Removed |Added

 CC|b2.t...@gmx.com |

--


[Issue 17385] Too much commands

2020-02-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

--- Comment #7 from Basile-z  ---
sorry I got a 503 and thought it was gone forever.

--


[Issue 17385] Too much commands

2020-02-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

Simen Kjaeraas  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 CC||simen.kja...@gmail.com
 Resolution|INVALID |---

--- Comment #6 from Simen Kjaeraas  ---
This is the code (which is available in the URL that the shortlink resolves
to):

int square(ref int num) {
   num = 11;
   return 0;
}

Putting that in run.dlang.io, setting flags to '-O' and clicking the ASM button
gives this:


int onlineapp.square(ref int):
pushRBP
mov RBP,RSP
mov dword ptr [RDI],0Bh
xor EAX,EAX
pop RBP
ret
add [RAX],AL

--


[Issue 17385] Too much commands

2020-02-20 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

Basile-z  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||b2.t...@gmx.com
 Resolution|--- |INVALID

--- Comment #5 from Basile-z  ---
original code is N/A

--


[Issue 17385] Too much commands

2017-10-16 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to stable at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/30c280156c6d7f0550f42a3a4d64db5c0cced4e3
Issue 17385: Update findSplit doc so example compiles.

https://github.com/dlang/phobos/commit/28b8c9d46c5e824fd187bcf51354b70607ba2f59
Merge pull request #5752 from jondegenhardt/issue-17385-findSplit-doc

--


[Issue 17385] Too much commands

2017-10-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

Jon Degenhardt  changed:

   What|Removed |Added

 CC||jrdemail2000-dl...@yahoo.co
   ||m

--- Comment #3 from Jon Degenhardt  ---
(In reply to github-bugzilla from comment #2)
> Commits pushed to master at https://github.com/dlang/phobos
> 
> https://github.com/dlang/phobos/commit/
> 30c280156c6d7f0550f42a3a4d64db5c0cced4e3
> Issue 17385: Update findSplit doc so example compiles.
> 
> https://github.com/dlang/phobos/commit/
> 28b8c9d46c5e824fd187bcf51354b70607ba2f59
> Merge pull request #5752 from jondegenhardt/issue-17385-findSplit-doc
> 
> Issue 17385: Update findSplit doc so example compiles.
> merged-on-behalf-of: MetaLang 

Ignore this comment. The result of an incorrect issue number in a PR title.

--


[Issue 17385] Too much commands

2017-10-01 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

--- Comment #2 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/30c280156c6d7f0550f42a3a4d64db5c0cced4e3
Issue 17385: Update findSplit doc so example compiles.

https://github.com/dlang/phobos/commit/28b8c9d46c5e824fd187bcf51354b70607ba2f59
Merge pull request #5752 from jondegenhardt/issue-17385-findSplit-doc

Issue 17385: Update findSplit doc so example compiles.
merged-on-behalf-of: MetaLang 

--


[Issue 17385] Too much commands

2017-05-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17385

ag0ae...@gmail.com changed:

   What|Removed |Added

 CC||ag0ae...@gmail.com

--- Comment #1 from ag0ae...@gmail.com ---
(In reply to Serafimati from comment #0)
> https://goo.gl/WPlPB8
[...]
> We can save 17 bytes. It's 68% of all the procedure binary... What's wrong?

You forgot `-O`.

--