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 /linux-user/tilegx | |
parent | 5a59fbce9141c40db0f0a5a6e17583ad9189b48b (diff) | |
download | qemu-06887771bda2a297f2fb669522166a97d67e2ad9.zip qemu-06887771bda2a297f2fb669522166a97d67e2ad9.tar.gz qemu-06887771bda2a297f2fb669522166a97d67e2ad9.tar.bz2 |
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 'linux-user/tilegx')
-rw-r--r-- | linux-user/tilegx/cpu_loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/tilegx/cpu_loop.c b/linux-user/tilegx/cpu_loop.c index 4f39eb9..d4abe29 100644 --- a/linux-user/tilegx/cpu_loop.c +++ b/linux-user/tilegx/cpu_loop.c @@ -206,7 +206,7 @@ static void do_fetch(CPUTLGState *env, int trapnr, bool quad) void cpu_loop(CPUTLGState *env) { - CPUState *cs = CPU(tilegx_env_get_cpu(env)); + CPUState *cs = env_cpu(env); int trapnr; while (1) { |