Search

June 12, 2016
General »
...IRstate *irs, uint ret)
    {
        static assert((Identifier*).sizeof == uint.sizeof);  // <======
        if(ret)
        {
            uint u = cast...
June 11, 2016
Learn »
...cast

Ret castTo(Ret, T)(T t) if(is(T == class))
{
    return cast(Ret) t...
June 04, 2016
General »
...rsi
    ret
LBB11_5:
    sub rsi, rax
    mov rax, rsi
    mov rdx, rcx
    ret

__D9test...
June 01, 2016
Issues »
...false;   // result = result | ... : OK
    if (result) goto ret;     // remove this line       : OK

    result |= false;   // result...
May 31, 2016
Learn »
...and variables
   pop    EBP         // Restore EBP register
   ret                // Return from function

Remember that this works...
May 24, 2016
General »
...or t.child = s#?_, typeof(t.child) ret{ ret = child;};

   t?.child = s?.child?;   // if...
May 22, 2016
General »
...typeof(this) save()
            {
                auto ret = this;
                ret._input = _input.save;
                return ret;
            }
        }
    }

    return Result(r...
May 18, 2016
Issues »
...foo(F)(F x)
{
    F ret = 1;
    ret = -ret;
    return ret;
}

void main() {
    import std...
May 03, 2016
Issues »
...case as well?

struct S { void foo() { asm { naked; ret; } } }

I just hit this bug.

--
April 23, 2016
General »
...rdi - 1]
	test	eax, edi
	sete	al
	ret

which is already quite good.

There is...
50 51 52 53 54 55 56 57 58 59 60 61
Next ›   Last »