Delete "break"s and "return"s after the math_abort() macro, which itself

finishes with a "return".
This commit is contained in:
simonb 2001-11-09 00:38:57 +00:00
parent 3130a93ac8
commit 0000c94242
1 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: math_emulate.c,v 1.22 2001/08/03 00:41:46 thorpej Exp $ */
/* $NetBSD: math_emulate.c,v 1.23 2001/11/09 00:38:57 simonb Exp $ */
/*
* expediant "port" of linux 8087 emulator to 386BSD, with apologies -wfj
@ -113,7 +113,6 @@ math_emulate(info)
switch (prefix) {
case INSPREF_LOCK:
math_abort(info, SIGILL);
break;
case INSPREF_REPN:
case INSPREF_REPE:
break;
@ -133,7 +132,6 @@ math_emulate(info)
break;
case -1:
math_abort(info,SIGSEGV);
break;
default:
goto done;
}
@ -373,8 +371,6 @@ done:
case 0xf8: /* XXX */
printf("ffree not implemented\n\r");
math_abort(info,SIGILL);
fpop();
return(0);
case 0xf9: /* XXX */
fxchg(&ST(0),&ST(code & 7));
return(0);