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/hard-reg-set.h | |
parent | 7d46fa8f8f179c38d1ac777e72a381a46a3c5969 (diff) |
make host wide int 32 bits
Diffstat (limited to 'gcc/hard-reg-set.h')
-rwxr-xr-x | gcc/hard-reg-set.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/hard-reg-set.h b/gcc/hard-reg-set.h index b97ea1c..a7da19b 100755 --- a/gcc/hard-reg-set.h +++ b/gcc/hard-reg-set.h @@ -34,7 +34,7 @@ Boston, MA 02111-1307, USA. */ registers and then only in the few cases where we have an array of HARD_REG_SETs, so it needn't be as complex as it used to be. */ -typedef unsigned HOST_WIDE_INT HARD_REG_ELT_TYPE; +typedef HOST_WIDE_UINT HARD_REG_ELT_TYPE; #define HARD_REG_SET HARD_REG_ELT_TYPE |