June 14, 2014
On Sat, Jun 14, 2014 at 8:45 PM, Christian Kamm via digitalmars-d-ldc <digitalmars-d-ldc@puremagic.com> wrote:
> I'd be interested in nm -s on that libphobos2.a as well as the order of files in the archive and the symbols in the object files.

You can get at the output by simply submitting a pull request that adds the "nm -s" command to .travis.yml.

Directly logging in is not possible, as far as I'm aware.

David
June 16, 2014
On Saturday, 14 June 2014 at 12:18:54 UTC, Christian Kamm wrote:
>> Thinking about this a bit, it seems very plausible that the compiler
>> actually works as intended here.
>
> For what it's worth, compiling stdio.d with dmd 2.064 also does not emit
> object.capacity(). So if dmd's phobos was built the same way as ldc's, I
> expect it'd have the same issue.

Yes, but the std.array.Appender() ctor which calls object.capacity() is also not emitted by dmd 2.064. This ctor is called nowhere so it looks we are emitting too much code.

The ctor is:
pure nothrow ref @safe std.array.Appender!(immutable(char)[]).Appender std.array.Appender!(immutable(char)[]).Appender.__ctor(char[])

Regards,
Kai
1 2 3
Next ›   Last »