On Saturday, 2 October 2021 at 22:40:32 UTC, max haughton wrote:
On Saturday, 2 October 2021 at 18:05:06 UTC, Dennis wrote:
On Saturday, 2 October 2021 at 16:57:48 UTC, max haughton
wrote:
Do you have optimizations turned on? i.e. are you compiling
with -O by accident?
Not needed, it's declar
On Saturday, 2 October 2021 at 18:05:06 UTC, Dennis wrote:
On Saturday, 2 October 2021 at 16:57:48 UTC, max haughton wrote:
Do you have optimizations turned on? i.e. are you compiling
with -O by accident?
Not needed, it's declared:
```D
pragma(inline, true) @property _timezone() @safe const pu
On Saturday, 2 October 2021 at 16:57:48 UTC, max haughton wrote:
Do you have optimizations turned on? i.e. are you compiling
with -O by accident?
Not needed, it's declared:
```D
pragma(inline, true) @property _timezone() @safe const pure
nothrow @nogc
```
DMD does inlining in the frontend, a
On Saturday, 2 October 2021 at 14:44:16 UTC, Padlev wrote:
On Saturday, 2 October 2021 at 13:26:27 UTC, Adam D Ruppe wrote:
On Saturday, 2 October 2021 at 13:24:19 UTC, Padlev wrote:
-o-
how to run only semantic and avoid codegen to have a quicker
run?
-o- does skip codegen already
so
On Saturday, 2 October 2021 at 13:26:27 UTC, Adam D Ruppe wrote:
On Saturday, 2 October 2021 at 13:24:19 UTC, Padlev wrote:
-o-
how to run only semantic and avoid codegen to have a quicker
run?
-o- does skip codegen already
so why this? it seems to take a long time from the last import
On Saturday, 2 October 2021 at 13:24:19 UTC, Padlev wrote:
-o-
how to run only semantic and avoid codegen to have a quicker
run?
-o- does skip codegen already
hello,
i run dmd from editor to check syntax of what i am writing, with
-c -o-.
how to run only semantic and avoid codegen to have a quicker run?