mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-03-23 03:45:14 +00:00
target-arm: Remove unneeded '+'
Backports commit 18084b2f71b22b3ec3bf4828b8cb83d1d39e8502 from qemu
This commit is contained in:
parent
efe96d29f3
commit
d409bb50e2
|
@ -1085,7 +1085,7 @@ static void gt_tval_write(CPUARMState *env, const ARMCPRegInfo *ri,
|
|||
int timeridx = ri->crm & 1;
|
||||
|
||||
env->cp15.c14_timer[timeridx].cval = gt_get_countervalue(env) +
|
||||
+ sextract64(value, 0, 32);
|
||||
sextract64(value, 0, 32);
|
||||
gt_recalc_timer(arm_env_get_cpu(env), timeridx);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue