------- Comment #39 from rth at gcc dot gnu dot org 2009-09-29 20:54 ------- (In reply to comment #35) > static tree > build_function_type_list_1 (bool vaargs, tree return_type, va_list argp)
Passing va_list by value is non-portable. One fix here is to pass argp by reference. Dunno if that fixes this problem though, since the main problem for Alpha seems to be the stdarg thing. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41395