summaryrefslogtreecommitdiff
path: root/gcc/real.h
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-03-05 17:30:22 -0800
committerYamaArashi <shadow962@live.com>2016-03-05 17:30:22 -0800
commit1f01ff809a107816317c4ac8a7eff1cbd3700370 (patch)
tree94d195909900f0f3ac91663a431de060e41c7abb /gcc/real.h
parent7d46fa8f8f179c38d1ac777e72a381a46a3c5969 (diff)
make host wide int 32 bits
Diffstat (limited to 'gcc/real.h')
-rwxr-xr-xgcc/real.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/real.h b/gcc/real.h
index 3bbcc26..9b3537c 100755
--- a/gcc/real.h
+++ b/gcc/real.h
@@ -85,13 +85,13 @@ extern REAL_VALUE_TYPE etruncui (REAL_VALUE_TYPE);
extern REAL_VALUE_TYPE ereal_atof (char *, enum machine_mode);
extern REAL_VALUE_TYPE ereal_negate (REAL_VALUE_TYPE);
extern HOST_WIDE_INT efixi (REAL_VALUE_TYPE);
-extern unsigned HOST_WIDE_INT efixui (REAL_VALUE_TYPE);
+extern HOST_WIDE_UINT efixui (REAL_VALUE_TYPE);
extern void ereal_from_int (REAL_VALUE_TYPE *,
HOST_WIDE_INT, HOST_WIDE_INT,
enum machine_mode);
extern void ereal_from_uint (REAL_VALUE_TYPE *,
- unsigned HOST_WIDE_INT,
- unsigned HOST_WIDE_INT,
+ HOST_WIDE_UINT,
+ HOST_WIDE_UINT,
enum machine_mode);
extern void ereal_to_int (HOST_WIDE_INT *, HOST_WIDE_INT *,
REAL_VALUE_TYPE);