projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0a909a
)
target/arm: Fix arm_cpu_dump_state vs FPSCR
author
Richard Henderson
<richard.henderson@linaro.org>
Fri, 15 Feb 2019 09:56:40 +0000
(09:56 +0000)
committer
Peter Maydell
<peter.maydell@linaro.org>
Fri, 15 Feb 2019 09:56:40 +0000
(09:56 +0000)
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-id:
20190209033847
.9014-8-richard.henderson@linaro.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
target/arm/translate.c
patch
|
blob
|
history
diff --git
a/target/arm/translate.c
b/target/arm/translate.c
index f0101d27887bba917739401731277ba0188073c3..9b426f4271c619cbeef46e2d8e5395be0492e39e 100644
(file)
--- a/
target/arm/translate.c
+++ b/
target/arm/translate.c
@@
-13641,7
+13641,7
@@
void arm_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
i * 2 + 1, (uint32_t)(v >> 32),
i, v);
}
- cpu_fprintf(f, "FPSCR: %08x\n",
(int)env->vfp.xregs[ARM_VFP_FPSCR]
);
+ cpu_fprintf(f, "FPSCR: %08x\n",
vfp_get_fpscr(env)
);
}
}