Thread overview
[Issue 24343] Read only data used to initialize objects that are mostly zero
Jan 17, 2024
Walter Bright
Jan 17, 2024
Walter Bright
Jan 25, 2024
anonymous4
January 17, 2024
https://issues.dlang.org/show_bug.cgi?id=24343

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |industry

--
January 17, 2024
https://issues.dlang.org/show_bug.cgi?id=24343

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |performance

--
January 25, 2024
https://issues.dlang.org/show_bug.cgi?id=24343

--- Comment #1 from anonymous4 <dfj1esp02@sneakemail.com> ---
TypeInfo could have a member
---
byte pattern;
---
so that struct S { char[100] x; } (sockaddr_un?) could still be initialized
with memset.

--
February 23, 2024
https://issues.dlang.org/show_bug.cgi?id=24343

johanengelen@weka.io changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |johanengelen@weka.io

--- Comment #2 from johanengelen@weka.io ---
How will this code be treated?

```
const(void[]) f() {
    return __traits(initSymbol, T);
}
```

--
December 13
https://issues.dlang.org/show_bug.cgi?id=24343

--- Comment #3 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/18206

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--