diff options
| author | Richard Henderson | 2017-09-11 20:25:55 +0200 |
|---|---|---|
| committer | Richard Henderson | 2017-09-17 15:52:19 +0200 |
| commit | ccb1bb66ea2a42e773bfa04178d8b383ff86d4d8 (patch) | |
| tree | 24ed8314b2970738371674ded31df4e52e986f56 /tcg/arm | |
| parent | tcg: Add tcg_op_supported (diff) | |
| download | qemu-ccb1bb66ea2a42e773bfa04178d8b383ff86d4d8.tar.gz qemu-ccb1bb66ea2a42e773bfa04178d8b383ff86d4d8.tar.xz qemu-ccb1bb66ea2a42e773bfa04178d8b383ff86d4d8.zip | |
tcg: Remove tcg_regset_clear
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/arm')
| -rw-r--r-- | tcg/arm/tcg-target.inc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/arm/tcg-target.inc.c b/tcg/arm/tcg-target.inc.c index db46aea38c..f0c176554b 100644 --- a/tcg/arm/tcg-target.inc.c +++ b/tcg/arm/tcg-target.inc.c @@ -2173,7 +2173,7 @@ static void tcg_target_init(TCGContext *s) (1 << TCG_REG_R12) | (1 << TCG_REG_R14)); - tcg_regset_clear(s->reserved_regs); + s->reserved_regs = 0; tcg_regset_set_reg(s->reserved_regs, TCG_REG_CALL_STACK); tcg_regset_set_reg(s->reserved_regs, TCG_REG_TMP); tcg_regset_set_reg(s->reserved_regs, TCG_REG_PC); |
