diff options
author | Bruce Evans <bde@FreeBSD.org> | 1997-07-01 00:08:34 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1997-07-01 00:08:34 +0000 |
commit | 51d3fea92db8aeb9d110a2a390313e70f04795b3 (patch) | |
tree | 272db9ef0102286a34e35a96c6cbdae9b2957713 /sys/gnu/i386/fpemul | |
parent | 94e24bf0f563054d7a4a8ed23a3a0e8c4d5059b9 (diff) |
Notes
Diffstat (limited to 'sys/gnu/i386/fpemul')
-rw-r--r-- | sys/gnu/i386/fpemul/load_store.c | 5 | ||||
-rw-r--r-- | sys/gnu/i386/fpemul/reg_compare.c | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/sys/gnu/i386/fpemul/load_store.c b/sys/gnu/i386/fpemul/load_store.c index 3573df0b35df2..76bcfd974a260 100644 --- a/sys/gnu/i386/fpemul/load_store.c +++ b/sys/gnu/i386/fpemul/load_store.c @@ -57,7 +57,7 @@ * W. Metzenthen June 1994. * * - * $Id: load_store.c,v 1.8 1997/02/22 09:29:10 peter Exp $ + * $Id: load_store.c,v 1.9 1997/06/14 15:11:04 bde Exp $ * */ @@ -128,7 +128,8 @@ load_store_instr(char type) } break; case _null_: - return Un_impl(); + Un_impl(); + return; #ifdef PARANOID default: return EXCEPTION(EX_INTERNAL); diff --git a/sys/gnu/i386/fpemul/reg_compare.c b/sys/gnu/i386/fpemul/reg_compare.c index 5737cf50be3f2..abc0d224ee02f 100644 --- a/sys/gnu/i386/fpemul/reg_compare.c +++ b/sys/gnu/i386/fpemul/reg_compare.c @@ -56,7 +56,7 @@ * W. Metzenthen June 1994. * * - * $Id: reg_compare.c,v 1.8 1997/02/22 09:29:21 peter Exp $ + * $Id: reg_compare.c,v 1.9 1997/06/14 15:11:05 bde Exp $ * */ @@ -340,8 +340,10 @@ void fcompp() { /* fcompp */ - if (FPU_rm != 1) - return Un_impl(); + if (FPU_rm != 1) { + Un_impl(); + return; + } if (compare_st_st(1)) { pop(); FPU_st0_ptr = &st(0); |