diff options
author | YamaArashi <shadow962@live.com> | 2016-03-05 17:30:22 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-03-05 17:30:22 -0800 |
commit | 1f01ff809a107816317c4ac8a7eff1cbd3700370 (patch) | |
tree | 94d195909900f0f3ac91663a431de060e41c7abb /gcc/gcse.c | |
parent | 7d46fa8f8f179c38d1ac777e72a381a46a3c5969 (diff) |
make host wide int 32 bits
Diffstat (limited to 'gcc/gcse.c')
-rwxr-xr-x | gcc/gcse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1471,7 +1471,7 @@ hash_expr_1 (x, mode, do_not_record_p) case CONST_INT: { - unsigned HOST_WIDE_INT tem = INTVAL (x); + HOST_WIDE_UINT tem = INTVAL (x); hash += ((unsigned) CONST_INT << 7) + (unsigned) mode + tem; return hash; } |