gen-icount: use tcg_ctx.tcg_env instead of cpu_env
commit53f6672bcf57d82b794a2cc3a3469be7d35c8653
authorEmilio G. Cota <cota@braap.org>
Fri, 16 Jun 2017 18:56:37 +0000 (16 14:56 -0400)
committerRichard Henderson <rth@twiddle.net>
Fri, 30 Jun 2017 18:40:59 +0000 (30 11:40 -0700)
tree659dee3aa17b857df20e1ce4d4d4ca26ea3040cb
parentae06cb46b2d3d27ccad92ad962afda68ad1286a9
gen-icount: use tcg_ctx.tcg_env instead of cpu_env

We are relying on cpu_env being defined as a global, yet most
targets (i.e. all but arm/a64) have it defined as a local variable.
Luckily all of them use the same "cpu_env" name, but really
compilation shouldn't break if the name of that local variable
changed.

Fix it by using tcg_ctx.tcg_env, which all targets set in their
translate_init function. This change also helps paving the way
for the upcoming "translation loop common to all targets" work.

Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Message-Id: <1497639397-19453-3-git-send-email-cota@braap.org>
Signed-off-by: Richard Henderson <rth@twiddle.net>
include/exec/gen-icount.h