diff options
author | 1996-06-17 00:24:07 +0000 | |
---|---|---|
committer | 1996-06-17 00:24:07 +0000 | |
commit | b565ca3c247cd1c89529aaafa302eafb72aaca49 (patch) | |
tree | 65bf1d9448ece4dfafe3a5c99569bad79f9c842c | |
parent | from netbsd; Change the segment mov constraint to WordReg|WordMem, to (diff) | |
download | wireguard-openbsd-b565ca3c247cd1c89529aaafa302eafb72aaca49.tar.xz wireguard-openbsd-b565ca3c247cd1c89529aaafa302eafb72aaca49.zip |
from netbsd; md_parse_arg: `-K' implies `-k'
-rw-r--r-- | gnu/usr.bin/gas/config/tc-ns32k.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/gas/config/tc-ns32k.c b/gnu/usr.bin/gas/config/tc-ns32k.c index 2a86ebd7006..3bea2abcf85 100644 --- a/gnu/usr.bin/gas/config/tc-ns32k.c +++ b/gnu/usr.bin/gas/config/tc-ns32k.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tc-ns32k.c,v 1.3 1996/04/23 00:16:04 niklas Exp $ */ +/* $OpenBSD: tc-ns32k.c,v 1.4 1996/06/17 00:24:07 deraadt Exp $ */ /* ns32k.c -- Assemble on the National Semiconductor 32k series Copyright (C) 1987, 1992 Free Software Foundation, Inc. @@ -1885,7 +1885,7 @@ char ***vecP; #ifdef PIC case 'K': got_offset_size = 4; - break; + /*FALLTHROUGH*/ case 'k': got_symbol = symbol_find_or_make("__GLOBAL_OFFSET_TABLE_"); break; |