Commit 9766dbcf by Michael Tiemann Committed by Jim Wilson

Patch from Michael Tiemann to fix typo.

	* ginclude/va-mips.h (va_arg): Remove trailing space after '\'
	continuation character (line 243).

From-SVN: r18136
parent 01a7aaea
Fri Feb 20 10:39:47 1998 Michael Tiemann <michael@impact.tiemann.org>
* ginclude/va-mips.h (va_arg): Remove trailing space after '\'
continuation character (line 243).
Fri Feb 20 12:10:26 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* genrecog.c (main): Remove duplicated sentence in emitted comment.
......
......@@ -240,7 +240,7 @@ void va_end (__gnuc_va_list); /* Defined in libgcc.a */
#ifdef __mips64
#ifdef __MIPSEB__
#define va_arg(__AP, __type) \
((__type *) (void *) (__AP = (char *) \
((__type *) (void *) (__AP = (char *) \
((((__PTRDIFF_TYPE__)__AP + 8 - 1) & -8) \
+ __va_rounded_size (__type))))[-1]
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment