X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=opcodes%2Fmt-ibld.c;h=00110de7934863901e832eef3567c9c3567f8f15;hb=8ebac3aae962b531a2b86b6afba9e9d19a30c74d;hp=d5cd14e4d0db395167302f86059cf3f5d95b9456;hpb=fe8afbc48fd3fba73600670fd2b0fcbfd45c440a;p=deliverable%2Fbinutils-gdb.git diff --git a/opcodes/mt-ibld.c b/opcodes/mt-ibld.c index d5cd14e4d0..00110de793 100644 --- a/opcodes/mt-ibld.c +++ b/opcodes/mt-ibld.c @@ -138,7 +138,7 @@ insert_normal (CGEN_CPU_DESC cd, if (length == 0) return NULL; - if (word_length > 32) + if (word_length > 8 * sizeof (CGEN_INSN_INT)) abort (); /* For architectures with insns smaller than the base-insn-bitsize, @@ -442,7 +442,7 @@ extract_normal (CGEN_CPU_DESC cd, return 1; } - if (word_length > 32) + if (word_length > 8 * sizeof (CGEN_INSN_INT)) abort (); /* For architectures with insns smaller than the insn-base-bitsize, @@ -469,7 +469,7 @@ extract_normal (CGEN_CPU_DESC cd, { unsigned char *bufp = ex_info->insn_bytes + word_offset / 8; - if (word_length > 32) + if (word_length > 8 * sizeof (CGEN_INSN_INT)) abort (); if (fill_cache (cd, ex_info, word_offset / 8, word_length / 8, pc) == 0)