From: Brian Cain <bc...@quicinc.com> Signed-off-by: Brian Cain <brian.c...@oss.qualcomm.com> --- target/hexagon/translate.h | 5 +++++ target/hexagon/translate.c | 2 ++ 2 files changed, 7 insertions(+)
diff --git a/target/hexagon/translate.h b/target/hexagon/translate.h index 2bd125297a..4c1868369a 100644 --- a/target/hexagon/translate.h +++ b/target/hexagon/translate.h @@ -280,6 +280,11 @@ extern TCGv_i64 hex_llsc_val_i64; extern TCGv hex_vstore_addr[VSTORES_MAX]; extern TCGv hex_vstore_size[VSTORES_MAX]; extern TCGv hex_vstore_pending[VSTORES_MAX]; +#ifndef CONFIG_USER_ONLY +extern TCGv hex_greg[NUM_GREGS]; +extern TCGv hex_t_sreg[NUM_SREGS]; +#endif + void hex_gen_exception_end_tb(DisasContext *ctx, int excp); diff --git a/target/hexagon/translate.c b/target/hexagon/translate.c index c87f07ab69..d788aa227c 100644 --- a/target/hexagon/translate.c +++ b/target/hexagon/translate.c @@ -62,6 +62,8 @@ TCGv hex_vstore_size[VSTORES_MAX]; TCGv hex_vstore_pending[VSTORES_MAX]; #ifndef CONFIG_USER_ONLY +TCGv hex_greg[NUM_GREGS]; +TCGv hex_t_sreg[NUM_SREGS]; TCGv hex_cause_code; #endif -- 2.34.1