On Mon, Aug 26, 2013 at 11:04:42AM +0200, Uros Bizjak wrote: > static bool > -ix86_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED) > +ix86_return_in_memory (const_tree type, const_tree fntype) > { > #ifdef SUBTARGET_RETURN_IN_MEMORY > return SUBTARGET_RETURN_IN_MEMORY (type, fntype);
This doesn't look right, because the SUBTARGET_RETURN_IN_MEMORY definitions (interix and i386elf) don't mention the FNTYPE anywhere. Jakub