aboutsummaryrefslogtreecommitdiff
path: root/gcc/ch/actions.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ch/actions.c')
-rw-r--r--gcc/ch/actions.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ch/actions.c b/gcc/ch/actions.c
index d7b10e60270..32bb18152ad 100644
--- a/gcc/ch/actions.c
+++ b/gcc/ch/actions.c
@@ -1453,7 +1453,8 @@ check_missing_cases (type)
unsigned char *cases_seen;
/* The number of possible selector values. */
HOST_WIDE_INT size = all_cases_count (type, &is_sparse);
- long bytes_needed = (size+HOST_BITS_PER_CHAR)/HOST_BITS_PER_CHAR;
+ HOST_WIDE_INT bytes_needed
+ = (size + HOST_BITS_PER_CHAR) / HOST_BITS_PER_CHAR;
if (size == -1)
warning ("CASE selector with variable range");