[Issue 13331] naked asm functions are broken when compiling with -profile

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

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to newCTFE at https://github.com/dlang/dmd

https://github.com/dlang/dmd/commit/c6db9b7d55ea9b533d584cd1da7d4fdb873fccd8
fix Issue 13331 - naked asm functions are broken when compiling with -profile

https://github.com/dlang/dmd/commit/7162f2bc2e067894874e632cb51ead4900c70694
Merge pull request #6770 from WalterBright/fix13331

--


[Issue 13331] naked asm functions are broken when compiling with -profile

2017-06-17 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13331

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

https://github.com/dlang/dmd/commit/c6db9b7d55ea9b533d584cd1da7d4fdb873fccd8
fix Issue 13331 - naked asm functions are broken when compiling with -profile

https://github.com/dlang/dmd/commit/7162f2bc2e067894874e632cb51ead4900c70694
Merge pull request #6770 from WalterBright/fix13331

--


[Issue 13331] naked asm functions are broken when compiling with -profile

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

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

https://github.com/dlang/dmd/commit/c6db9b7d55ea9b533d584cd1da7d4fdb873fccd8
fix Issue 13331 - naked asm functions are broken when compiling with -profile

https://github.com/dlang/dmd/commit/7162f2bc2e067894874e632cb51ead4900c70694
Merge pull request #6770 from WalterBright/fix13331

fix Issue 13331 - naked asm functions are broken when compiling with …
merged-on-behalf-of: Andrei Alexandrescu 

--


[Issue 13331] naked asm functions are broken when compiling with -profile

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

Walter Bright  changed:

   What|Removed |Added

 CC||bugzi...@digitalmars.com

--- Comment #2 from Walter Bright  ---
https://github.com/dlang/dmd/pull/6770

--


[Issue 13331] naked asm functions are broken when compiling with -profile

2016-08-14 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13331

Cauterite  changed:

   What|Removed |Added

   Keywords||iasm, wrong-code
 CC||cauter...@gmail.com
   Hardware|x86 |All
 OS|Linux   |All

--- Comment #1 from Cauterite  ---
minimal test case:
void main() {asm {naked; ret;}}

still broken with DMD 2.071.1 / 32-bit backend

--