diff options
Diffstat (limited to 'target/hexagon/decode.c')
-rw-r--r-- | target/hexagon/decode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/hexagon/decode.c b/target/hexagon/decode.c index 23deba2..b5ece60 100644 --- a/target/hexagon/decode.c +++ b/target/hexagon/decode.c @@ -236,9 +236,9 @@ static void decode_set_insn_attr_fields(Packet *pkt) if (GET_ATTRIB(opcode, A_SCALAR_STORE) && !GET_ATTRIB(opcode, A_MEMSIZE_0B)) { if (pkt->insn[i].slot == 0) { - pkt->pkt_has_store_s0 = true; + pkt->pkt_has_scalar_store_s0 = true; } else { - pkt->pkt_has_store_s1 = true; + pkt->pkt_has_scalar_store_s1 = true; } } } |