Skip to content

Commit 459a383

Browse files
Claudiu Zissulescuartemiy-volkov
authored andcommitted
arc64: fix bbit range
1 parent f3ffa7e commit 459a383

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gcc/config/arc64/arc64.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,7 @@ vfext, vfins, vfsub, vfmul, vfdiv, vfrep, vpack, xbfu, xor, xorl"
13751375
(set (attr "length")
13761376
(if_then_else
13771377
(and (ge (minus (match_dup 0) (pc)) (const_int -254))
1378-
(le (minus (match_dup 0) (pc)) (const_int 250)))
1378+
(le (minus (match_dup 0) (pc)) (const_int 248)))
13791379
(const_int 4)
13801380
(const_int 8)))])
13811381

@@ -1406,7 +1406,7 @@ vfext, vfins, vfsub, vfmul, vfdiv, vfrep, vpack, xbfu, xor, xorl"
14061406
(set (attr "length")
14071407
(if_then_else
14081408
(and (ge (minus (match_dup 0) (pc)) (const_int -254))
1409-
(le (minus (match_dup 0) (pc)) (const_int 250)))
1409+
(le (minus (match_dup 0) (pc)) (const_int 248)))
14101410
(const_int 4)
14111411
(const_int 8)))])
14121412

0 commit comments

Comments
 (0)