diff options
author | 2013-05-27 21:10:33 +0000 | |
---|---|---|
committer | 2013-05-27 21:10:33 +0000 | |
commit | 94450d54c5a9314f31ef7364cd189c21967bd386 (patch) | |
tree | 7d28b015a943d6addd22a1c37d4530ab88697116 | |
parent | Drop lvalue casts; allows this to compile with gcc 4. (diff) | |
download | wireguard-openbsd-94450d54c5a9314f31ef7364cd189c21967bd386.tar.xz wireguard-openbsd-94450d54c5a9314f31ef7364cd189c21967bd386.zip |
Use FLUSH_PIPELINE instead of rolling our own. No functional change.
-rw-r--r-- | sys/arch/m88k/m88k/m88100_fp.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/m88k/m88k/m88100_fp.S b/sys/arch/m88k/m88k/m88100_fp.S index 697f536ad82..4077d684abf 100644 --- a/sys/arch/m88k/m88k/m88100_fp.S +++ b/sys/arch/m88k/m88k/m88100_fp.S @@ -1,4 +1,4 @@ -/* $OpenBSD: m88100_fp.S,v 1.7 2013/02/17 18:05:51 miod Exp $ */ +/* $OpenBSD: m88100_fp.S,v 1.8 2013/05/27 21:10:33 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1991 Carnegie Mellon University @@ -135,7 +135,7 @@ ASLOCAL(FPuimp) */ ASLOCAL(wrapup) - tb1 0, %r0, 0 /* make sure all floating point operations */ + FLUSH_PIPELINE /* make sure all floating point operations */ /* have finished */ ldcr %r10, %cr1 /* load the PSR */ #if 0 @@ -2665,7 +2665,7 @@ ASENTRY(Xfp_imprecise) /* XXX handle inexact!!! */ fpui_wrapup: - tb1 0, %r0, 0 /* make sure all floating */ + FLUSH_PIPELINE /* make sure all floating */ /* point operations have */ /* finished */ ldcr %r4, %cr1 /* load the PSR */ |