From e314b8c83fc3ef73693a1b49382d03240f05d440 Mon Sep 17 00:00:00 2001 From: tom Date: Thu, 22 Jun 2017 13:21:10 +0000 Subject: [PATCH] Tidy up comment about double load opcodes in m88k/eh_common.S (and fix ;; -> ||) ok miod@ --- sys/arch/m88k/m88k/eh_common.S | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/arch/m88k/m88k/eh_common.S b/sys/arch/m88k/m88k/eh_common.S index 11844bc76a2..8275e273f74 100644 --- a/sys/arch/m88k/m88k/eh_common.S +++ b/sys/arch/m88k/m88k/eh_common.S @@ -1,4 +1,4 @@ -/* $OpenBSD: eh_common.S,v 1.61 2013/09/05 20:40:32 miod Exp $ */ +/* $OpenBSD: eh_common.S,v 1.62 2017/06/22 13:21:10 tom Exp $ */ /* * Mach Operating System * Copyright (c) 1993-1991 Carnegie Mellon University @@ -1264,11 +1264,11 @@ ASLOCAL(clear_dest_ssbr_bit) * Now see if it's a double load * There are three forms of double load [IMM16, scaled, unscaled], * which can be checked by matching against two templates: - * -- 77776666555544443333222211110000 -- + * -- 77776666555544443333222211110000 -- * if (((instruction & 11111100000000000000000000000000) == - * 00010000000000000000000000000000) ;; + * 00010000000000000000000000000000) || * ((instruction & 11111100000000001111110011100000) == - * 11110100000000000001000000000000)) + * 11110100000000000001000000000000)) * { * It's a load double, so * clear two SSBR bits. -- 2.20.1