The following changes since commit 24f01d220f56eab3268538ef10655b4fb2453fdf:
Merge https://github.com/qemu/qemu into tip (2022-07-18 11:16:39 -0700) are available in the Git repository at: https://github.com/quic/qemu tags/pull-hex-20220718 for you to fetch changes up to eb9072602617cb49c489aaf058f72695c2eaedc2: Hexagon (target/hexagon) fix bug in mem_noshuf load exception (2022-07-18 11:20:09 -0700) ---------------------------------------------------------------- Recall that the semantics of a Hexagon mem_noshuf packet are that the store effectively happens before the load. There are two bug fixes in this series. ---------------------------------------------------------------- Taylor Simpson (2): Hexagon (target/hexagon) fix store w/mem_noshuf & predicated load Hexagon (target/hexagon) fix bug in mem_noshuf load exception target/hexagon/gen_tcg.h | 10 ++- target/hexagon/helper.h | 1 + target/hexagon/macros.h | 37 +++++--- target/hexagon/genptr.c | 7 ++ target/hexagon/op_helper.c | 23 +++-- tests/tcg/hexagon/mem_noshuf.c | 122 ++++++++++++++++++++++++-- tests/tcg/hexagon/mem_noshuf_exception.c | 146 +++++++++++++++++++++++++++++++ tests/tcg/hexagon/Makefile.target | 1 + 8 files changed, 323 insertions(+), 24 deletions(-) create mode 100644 tests/tcg/hexagon/mem_noshuf_exception.c