PERFORCE change 130263 for review
Oleksandr Tymoshenko
gonzo at FreeBSD.org
Wed Dec 5 05:34:08 PST 2007
http://perforce.freebsd.org/chv.cgi?CH=130263
Change 130263 by gonzo at gonzo_jeeves on 2007/12/05 13:33:39
o Use __builtin_va_start instead of __builtin_stdarg_start.
GCC4 obsoletes the former and __builtin_va_start was present in
all GCC version 3.1 and later.
Affected files ...
.. //depot/projects/mips2/src/sys/mips/include/stdarg.h#2 edit
Differences ...
==== //depot/projects/mips2/src/sys/mips/include/stdarg.h#2 (text+ko) ====
@@ -42,7 +42,7 @@
#ifdef __GNUCLIKE_BUILTIN_STDARG
#define va_start(ap, last) \
- __builtin_stdarg_start((ap), (last))
+ __builtin_va_start((ap), (last))
#define va_arg(ap, type) \
__builtin_va_arg((ap), type)
More information about the p4-projects
mailing list