From: Jeff Law Date: Mon, 8 May 2023 14:28:26 +0000 (-0600) Subject: Fix minor length computation on stormy16 X-Git-Tag: basepoints/gcc-15~9555 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=148de3aaac6d2b66c635c76d245c7cd1537fa4e0;p=thirdparty%2Fgcc.git Fix minor length computation on stormy16 Today's build of xstormy16-elf failed due to a branch to an out of range target. Manual inspection of the assembly code for the affected function (divdi3) showed that the zero-extension patterns were claiming a length of 2, but clearly assembled into 4 bytes. This patch adds an explicit length to the zero extension pattern and appears to resolve the issue in my test builds. gcc/ * config/stormy16/stormy16.md (zero_extendhisi2): Fix length. --- diff --git a/gcc/config/stormy16/stormy16.md b/gcc/config/stormy16/stormy16.md index 91e4bb1cff7f..430ec297e5a4 100644 --- a/gcc/config/stormy16/stormy16.md +++ b/gcc/config/stormy16/stormy16.md @@ -299,7 +299,8 @@ (zero_extend:SI (match_operand:HI 1 "register_operand" "0")))] "" "mov %h0,#0" - [(set_attr "psw_operand" "clobber")]) + [(set_attr "length" "4") + (set_attr "psw_operand" "clobber")]) ;; :::::::::::::::::::: ;; ::