Patch from Michael Tiemann to fix typo.

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

From-SVN: r18136
This commit is contained in:
Michael Tiemann 1998-02-20 10:42:11 +00:00 committed by Jim Wilson
parent 01a7aaeade
commit 9766dbcffc
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
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.

View file

@ -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