diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-03-22 19:38:33 -0700 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2019-06-10 07:03:42 -0700 |
commit | 06887771bda2a297f2fb669522166a97d67e2ad9 (patch) | |
tree | 1ca87b55813a6349a500a9878779f8ae4018e874 /target/tilegx/helper.c | |
parent | 5a59fbce9141c40db0f0a5a6e17583ad9189b48b (diff) | |
download | qemu-06887771bda2a297f2fb669522166a97d67e2ad9.zip |
target/tilegx: Use env_cpu
Cleanup in the boilerplate that each target must define.
Replace tilegx_env_get_cpu with env_archcpu. The combination
CPU(tilegx_env_get_cpu) should have used ENV_GET_CPU to begin;
use env_cpu now.
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/tilegx/helper.c')
-rw-r--r-- | target/tilegx/helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/tilegx/helper.c b/target/tilegx/helper.c index 4964bb9111..a57a679825 100644 --- a/target/tilegx/helper.c +++ b/target/tilegx/helper.c @@ -28,7 +28,7 @@ void helper_exception(CPUTLGState *env, uint32_t excp) { - CPUState *cs = CPU(tilegx_env_get_cpu(env)); + CPUState *cs = env_cpu(env); cs->exception_index = excp; cpu_loop_exit(cs); |