diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2017-06-22 13:21:11 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2017-06-22 13:21:11 +0000 |
commit | 773d8f8b0f249d04c565b34d3790c0465329d523 (patch) | |
tree | 58902e04a888afb1fbd0d9225287f6acb5b552a5 /sys/arch/m88k | |
parent | 77d3294f524c65837cf0d2c33a4e741264e5f137 (diff) |
Tidy up comment about double load opcodes in m88k/eh_common.S (and fix ;; -> ||)
ok miod@
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r-- | sys/arch/m88k/m88k/eh_common.S | 8 |
1 files 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. |