@samitouri / QOSamiQemu / commits / 74459e6083

target/hexagon: Add missing A_CALL attr, hintjumpr to multi_cof

Signed-off-by: Brian Cain <brian.cain@oss.qualcomm.com> Reviewed-by: Taylor Simpson <ltaylorsimpson@gmail.com> Signed-off-by: Brian Cain <brian.cain@oss.qualcomm.com>

Brian Cain committed Jun 22, 2026 at 15:27 UTC 74459e60831bd0e13034d6f837e542f77081dc0e
1 file changed +3 -1
target/hexagon/hex_common.py
+3 -1
@@ -247,7 +247,9 @@ def need_next_PC(tag):
247
248
249 def need_pkt_has_multi_cof(tag):
250 - return "A_COF" in attribdict[tag]
250 + if attribdict[tag] & {"A_JUMP", "A_CALL"}:
251 + return tag != "J4_hintjumpr"
252 + return False
253
254
255 def need_pkt_need_commit(tag):