diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-01 05:47:20 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-01 05:47:20 +0000 |
commit | 559592b82aa80d33ff33335f03adcbd377590dc0 (patch) | |
tree | 46f07b85aa25e8ed493c29034a53ccd0ff97d4fa /sys | |
parent | f806db34a783da972794a6ef9eda4590a8b2e776 (diff) |
Delete bogus MATH_EMULATE holdover from i386
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/amd64/trap.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/amd64/amd64/trap.c b/sys/arch/amd64/amd64/trap.c index 2fcd708de08..5f66d853f14 100644 --- a/sys/arch/amd64/amd64/trap.c +++ b/sys/arch/amd64/amd64/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.46 2015/06/28 01:16:28 guenther Exp $ */ +/* $OpenBSD: trap.c,v 1.47 2015/09/01 05:47:19 guenther Exp $ */ /* $NetBSD: trap.c,v 1.2 2003/05/04 23:51:56 fvdl Exp $ */ /*- @@ -416,9 +416,6 @@ faultcommon: case T_BPTFLT|T_USER: /* bpt instruction fault */ case T_TRCTRAP|T_USER: /* trace trap */ -#ifdef MATH_EMULATE - trace: -#endif KERNEL_LOCK(); trapsignal(p, SIGTRAP, type &~ T_USER, TRAP_BRKPT, sv); KERNEL_UNLOCK(); |