June 12, 2016 General » Re: I'd love to see DScript one day ... | |||
|---|---|---|---|
| |||
...IRstate *irs, uint ret)
{
static assert((Identifier*).sizeof == uint.sizeof); // <======
if(ret)
{
uint u = cast... | |||
June 11, 2016 Learn » Re: strettosis@tutanota.com | |||
|---|---|---|---|
| |||
...cast
Ret castTo(Ret, T)(T t) if(is(T == class))
{
return cast(Ret) t... | |||
June 04, 2016 General » Re: Let's avoid range specializations - make ranges great again! | |||
|---|---|---|---|
| |||
...rsi
ret
LBB11_5:
sub rsi, rax
mov rax, rsi
mov rdx, rcx
ret
__D9test... | |||
June 01, 2016 Issues » [Issue 16107] [ICE] - Internal error: backend/cgcod.c 2297 | |||
|---|---|---|---|
| |||
...false; // result = result | ... : OK
if (result) goto ret; // remove this line : OK
result |= false; // result... | |||
May 31, 2016 Learn » Re: asm woes... | |||
|---|---|---|---|
| |||
...and variables pop EBP // Restore EBP register ret // Return from function Remember that this works... | |||
May 24, 2016 General » with and checked with expression? | |||
|---|---|---|---|
| |||
...or t.child = s#?_, typeof(t.child) ret{ ret = child;};
t?.child = s?.child?; // if... | |||
May 22, 2016 General » faster splitter | |||
|---|---|---|---|
| |||
...typeof(this) save()
{
auto ret = this;
ret._input = _input.save;
return ret;
}
}
}
return Result(r... | |||
May 18, 2016 Issues » [Issue 16038] New: -O Codegen bug: Missing floating-point negation | |||
|---|---|---|---|
| |||
...foo(F)(F x)
{
F ret = 1;
ret = -ret;
return ret;
}
void main() {
import std... | |||
May 03, 2016 Issues » [Issue 13147] Wrong codegen for thisptr in naked extern (C++) methods | |||
|---|---|---|---|
| |||
...case as well?
struct S { void foo() { asm { naked; ret; } } }
I just hit this bug.
-- | |||
April 23, 2016 General » Re: Checking if an Integer is an Exact Binary Power | |||
|---|---|---|---|
| |||
...rdi - 1] test eax, edi sete al ret which is already quite good. There is... | |||
Copyright © 1999-2021 by the D Language Foundation