February 23, 2017
https://issues.dlang.org/show_bug.cgi?id=17164

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@digitalmars.com
         Resolution|---                         |WONTFIX

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
__va_argsave is an internal symbol with more or less magic semantics. Support for it has been removed, as proper stdarg semantics now works. Use core.stdc.stdarg, and va_list, va_start, va_arg and va_end.

https://github.com/dlang/dmd/pull/5779

--
February 23, 2017
https://issues.dlang.org/show_bug.cgi?id=17164

--- Comment #2 from Jacob Carlborg <doob@me.com> ---
It's documented for D1 [1], under "C-style Variadic Functions". I still think it's a regressions, this code originated from D1.

[1] http://www.digitalmars.com/d/1.0/function.html

--