Search

July 09, 2014
Learn »
...eax, [<adress of u>]
        neg     eax                  ; because we subtracted in the wrong order
lable:  ret
July 09, 2014
Learn »
...eax, ebx
label2:
	(ret)

The 2nd branch can be replaced with ret if opCmp is...
June 30, 2014
General »
...movw	%ax, -10(%rsp)
	fistpl	-4(%rsp)
	fldcw	-10(%rsp)
	movl	-4(%rsp), %eax
	ret
June 30, 2014
General »
...movw	%ax, -10(%rsp)
	fistpl	-4(%rsp)
	fldcw	-10(%rsp)
	movl	-4(%rsp), %eax
	ret


June 23, 2014
Issues »
...RDX,RDI
        //    and    xchg RDX,R9 correctly
        ret;
    }
    }
}


ulong nobug(ulong a, ulong b, ulong...
June 14, 2014
Learn »
...auto ret = new T[](numreads);
	
	size_t read = index;
	foreach(i;0..numreads) {
		ret[i...
June 11, 2014
Learn »
...typeof(this) save()
    {
        auto ret = this;
        ret._input = _input.save;
        return ret;
    }
}
//----

This will split...
June 07, 2014
Learn »
...replace those "ret = XXX" with straight up "return XXX". The last "return ret" should be...
June 07, 2014
Learn »
...rhs[currentColumn] )
        ret = true;
      if (rhs[currentColumn] < lhs[currentColumn] )
	ret = false;
   }
   return ret;
}

Calling sort...
June 07, 2014
Learn »
...dg.ptr);
        ret = (*dg)(nframes);
        writeln("3. end");
        return ret;
      };

   ...
67 68 69 70 71 72 73 74 75 76 77 78
Next ›   Last »