Skip to content

Commit dba1c56

Browse files
committed
target/hexagon: Add missing A_CALL attr, hintjumpr to multi_cof
Signed-off-by: Brian Cain <brian.cain@oss.qualcomm.com>
1 parent a2afc51 commit dba1c56

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

target/hexagon/hex_common.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,11 @@ def need_next_PC(tag):
247247

248248

249249
def need_pkt_has_multi_cof(tag):
250-
return "A_COF" in attribdict[tag]
250+
if "A_JUMP" in attribdict[tag] or "A_CALL" in attribdict[tag]:
251+
if tag == "J4_hintjumpr":
252+
return False
253+
return True
254+
return False
251255

252256

253257
def need_pkt_need_commit(tag):

0 commit comments

Comments
 (0)