Re: [9fans] mips linker hoisting stack freeing operation

2015-04-01 Thread Charles Forsyth
On 1 April 2015 at 02:34, cinap_len...@felloff.net wrote: theres my attempt at preventing the linker from doing so: It's one of those cases where it's funny it hasn't been noticed before, since the effects won't be confined to libdraw. Anyway, that change seems ok, although it's really a

Re: [9fans] mips linker hoisting stack freeing operation

2015-04-01 Thread cinap_lenrek
thanks. -- cinap

[9fans] mips linker hoisting stack freeing operation

2015-03-31 Thread cinap_lenrek
Point Pt(int x, int y) { int buf[1000]; /* added for demonstration */ Point p; buf[0] = x; p.x = x; p.y = y; return p; } vc -S compiler output looks ok, but i dont quite understand why it doesnt