Restore an ifdef that should not have been removed in r303535.

X-MFC-With:	r303535
This commit is contained in:
Mark Johnston 2016-07-30 07:05:32 +00:00
parent d7d0513c31
commit 57185c52de
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=303544

View File

@ -1088,6 +1088,7 @@ fasttrap_pid_probe(struct reg *rp)
if (tp->ftt_ids != NULL) {
fasttrap_id_t *id;
#ifdef __amd64
if (p->p_model == DATAMODEL_LP64) {
for (id = tp->ftt_ids; id != NULL; id = id->fti_next) {
fasttrap_probe_t *probe = id->fti_probe;
@ -1129,6 +1130,7 @@ fasttrap_pid_probe(struct reg *rp)
}
}
} else {
#endif
uintptr_t s0, s1, s2, s3, s4, s5;
uint32_t *stack = (uint32_t *)rp->r_rsp;
@ -1183,7 +1185,9 @@ fasttrap_pid_probe(struct reg *rp)
t[2], t[3], t[4]);
}
}
#ifdef __amd64
}
#endif
}
/*