Hello,

gcc currently does not even optimize following fragment:

int foo(){
  char *x=malloc(64);
  free(x);
}

It should be possible to change malloc with small size and there is free
that dominates that malloc into alloca. 

Also when size it is not known it could be (perhaps with profiling)
turned into conditional alloca.

-- 

static from nylon underwear

Reply via email to