summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2015-01-27 18:56:46 +0000
committerDimitry Andric <dim@FreeBSD.org>2015-01-27 18:56:46 +0000
commitc7d7e597b410b3802ed7480d0db628e8449f29cc (patch)
tree4233055d5c8f2171e46acf13bfe793932b488e2e
parentcb8266e79741e2e73ddb968761e192f8c9e02508 (diff)
Notes
-rw-r--r--lib/libthread_db/arch/i386/libpthread_md.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthread_db/arch/i386/libpthread_md.c b/lib/libthread_db/arch/i386/libpthread_md.c
index d41865f521e39..784c245d93eb1 100644
--- a/lib/libthread_db/arch/i386/libpthread_md.c
+++ b/lib/libthread_db/arch/i386/libpthread_md.c
@@ -72,7 +72,7 @@ pt_ucontext_to_fpreg(const ucontext_t *uc, struct fpreg *r)
memcpy(r, &uc->uc_mcontext.mc_fpstate, sizeof(struct save87));
else {
int i;
- struct savexmm *sx = (struct savexmm *)&uc->uc_mcontext.mc_fpstate;
+ const struct savexmm *sx = (const struct savexmm *)&uc->uc_mcontext.mc_fpstate;
memcpy(&r->fpr_env, &sx->sv_env, sizeof(r->fpr_env));
for (i = 0; i < 8; ++i)
memcpy(&r->fpr_acc[i], &sx->sv_fp[i].fp_acc, 10);