aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-lex.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2000-09-13 01:45:51 +0200
committerUlrich Drepper <drepper@gcc.gnu.org>2000-09-12 23:45:51 +0000
commit5c80f6e6b1be7ad5fc64b015e87ee44896595ae6 (patch)
tree3127d7f2db514a65686b5436b98e35f8d6e6c8bc /gcc/c-lex.c
parent8cfccbf35553860b13562b8f60612386e19c39b0 (diff)
downloadgcc-5c80f6e6b1be7ad5fc64b015e87ee44896595ae6.zip
gcc-5c80f6e6b1be7ad5fc64b015e87ee44896595ae6.tar.gz
gcc-5c80f6e6b1be7ad5fc64b015e87ee44896595ae6.tar.bz2
c-lex.c (lex_string): Use charwidth to compute bytemask.
* c-lex.c (lex_string): Use charwidth to compute bytemask. * expr.c (expand_expr): Don't optimize constant array references initialized with wide string constants. From-SVN: r36380
Diffstat (limited to 'gcc/c-lex.c')
-rw-r--r--gcc/c-lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lex.c b/gcc/c-lex.c
index fa5c7a7..f9c5cb4 100644
--- a/gcc/c-lex.c
+++ b/gcc/c-lex.c
@@ -2381,7 +2381,7 @@ lex_string (str, len, wide)
if (wide)
{
unsigned charwidth = TYPE_PRECISION (char_type_node);
- unsigned bytemask = (1 << width) - 1;
+ unsigned bytemask = (1 << charwidth) - 1;
int byte;
for (byte = 0; byte < WCHAR_BYTES; ++byte)