Commit 30c317f5 by Doug Evans Committed by Doug Evans

lex.c (MULTIBYTE_CHARS): #undef if cross compiling.

	* lex.c (MULTIBYTE_CHARS): #undef if cross compiling.
	(real_yylex): Record wide strings using target endianness, not host.

From-SVN: r16316
parent 645ebf37
Tue Nov 4 13:45:10 1997 Doug Evans <devans@canuck.cygnus.com>
* lex.c (MULTIBYTE_CHARS): #undef if cross compiling.
(real_yylex): Record wide strings using target endianness, not host.
1997-11-03 Brendan Kehoe <brendan@lisa.cygnus.com> 1997-11-03 Brendan Kehoe <brendan@lisa.cygnus.com>
* repo.c (rindex): Add decl unconditionally. * repo.c (rindex): Add decl unconditionally.
......
...@@ -39,6 +39,13 @@ Boston, MA 02111-1307, USA. */ ...@@ -39,6 +39,13 @@ Boston, MA 02111-1307, USA. */
#include "obstack.h" #include "obstack.h"
#include "c-pragma.h" #include "c-pragma.h"
/* MULTIBYTE_CHARS support only works for native compilers.
??? Ideally what we want is to model widechar support after
the current floating point support. */
#ifdef CROSS_COMPILE
#undef MULTIBYTE_CHARS
#endif
#ifdef MULTIBYTE_CHARS #ifdef MULTIBYTE_CHARS
#include <stdlib.h> #include <stdlib.h>
#include <locale.h> #include <locale.h>
...@@ -4064,15 +4071,9 @@ real_yylex () ...@@ -4064,15 +4071,9 @@ real_yylex ()
bzero (widep + (len * WCHAR_BYTES), WCHAR_BYTES); bzero (widep + (len * WCHAR_BYTES), WCHAR_BYTES);
#else #else
{ {
union { long l; char c[sizeof (long)]; } u;
int big_endian;
char *wp, *cp; char *wp, *cp;
/* Determine whether host is little or big endian. */ wp = widep + (BYTES_BIG_ENDIAN ? WCHAR_BYTES - 1 : 0);
u.l = 1;
big_endian = u.c[sizeof (long) - 1];
wp = widep + (big_endian ? WCHAR_BYTES - 1 : 0);
bzero (widep, (p - token_buffer) * WCHAR_BYTES); bzero (widep, (p - token_buffer) * WCHAR_BYTES);
for (cp = token_buffer + 1; cp < p; cp++) for (cp = token_buffer + 1; cp < p; cp++)
*wp = *cp, wp += WCHAR_BYTES; *wp = *cp, wp += WCHAR_BYTES;
......
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