summaryrefslogtreecommitdiff
path: root/gcc/jump.c
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/jump.c
parent7d46fa8f8f179c38d1ac777e72a381a46a3c5969 (diff)
make host wide int 32 bits
Diffstat (limited to 'gcc/jump.c')
-rwxr-xr-xgcc/jump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/jump.c b/gcc/jump.c
index 12c90f5..471160d 100755
--- a/gcc/jump.c
+++ b/gcc/jump.c
@@ -4946,8 +4946,8 @@ condjump_expect_p (insn)
int retval;
HOST_WIDE_INT exp_value;
HOST_WIDE_INT cmp_value;
- unsigned HOST_WIDE_INT exp_uns;
- unsigned HOST_WIDE_INT cmp_uns;
+ HOST_WIDE_UINT exp_uns;
+ HOST_WIDE_UINT cmp_uns;
if (GET_CODE (insn) != JUMP_INSN)
return 0;