diff options
author | YamaArashi <shadow962@live.com> | 2016-03-06 13:30:23 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-03-06 13:31:31 -0800 |
commit | e91bc8b5058f55174ea1d7e967e4e9d38fd29cae (patch) | |
tree | bd02014c3d4f04ecdb1ff984bd4db82db403880c /gcc/c-common.c | |
parent | 1f01ff809a107816317c4ac8a7eff1cbd3700370 (diff) |
get rid of HOST_BITS_PER_LONG
Diffstat (limited to 'gcc/c-common.c')
-rwxr-xr-x | gcc/c-common.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 0bff87c..51d4c5b 100755 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -282,10 +282,7 @@ combine_strings (strings) int i; for (i = 0; i < len; i++) { - if (WCHAR_TYPE_SIZE == HOST_BITS_PER_SHORT) - ((short *) q)[i] = TREE_STRING_POINTER (t)[i]; - else - ((int *) q)[i] = TREE_STRING_POINTER (t)[i]; + ((int *) q)[i] = TREE_STRING_POINTER (t)[i]; } q += len * wchar_bytes; } |