From: Robert R. Henry Date: Sun, 17 Aug 1980 08:32:42 +0000 (-0800) Subject: Add .quad storage filler directive X-Git-Tag: BSD-4^3~878 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/f2ff982324aabe6537d47e5098156db45d4f29ea Add .quad storage filler directive SCCS-vsn: old/as.vax/aspseudo.c 4.3 SCCS-vsn: old/as.vax/asparse.c 4.3 SCCS-vsn: old/as.vax/astoks.h 4.2 --- diff --git a/usr/src/old/as.vax/asparse.c b/usr/src/old/as.vax/asparse.c index e35a1780c2..36c0cce7aa 100644 --- a/usr/src/old/as.vax/asparse.c +++ b/usr/src/old/as.vax/asparse.c @@ -1,5 +1,5 @@ /* Copyright (c) 1980 Regents of the University of California */ -static char sccsid[] = "@(#)asparse.c 4.2 %G%"; +static char sccsid[] = "@(#)asparse.c 4.3 %G%"; #include #include "as.h" #include "asexpr.h" @@ -905,6 +905,7 @@ restlab: break; case IFLOAT: curlen = 4; goto floatlist; + case IQUAD: case IDOUBLE: curlen = 8; floatlist: diff --git a/usr/src/old/as.vax/aspseudo.c b/usr/src/old/as.vax/aspseudo.c index f6b0d44773..ac5ede305e 100644 --- a/usr/src/old/as.vax/aspseudo.c +++ b/usr/src/old/as.vax/aspseudo.c @@ -1,5 +1,5 @@ /* Copyright (c) 1980 Regents of the University of California */ -static char sccsid[] = "@(#)aspseudo.c 4.2 %G%"; +static char sccsid[] = "@(#)aspseudo.c 4.3 %G%"; #include #include "as.h" @@ -21,6 +21,7 @@ PSEUDO(".byte", 0, IBYTE), PSEUDO(".word", 0, IWORD), PSEUDO(".long", 0, ILONG), PSEUDO(".int", 0, IINT), +PSEUDO(".quad", 0, IQUAD), PSEUDO(".data", 0, IDATA), PSEUDO(".globl", 0, IGLOBAL), PSEUDO(".set", 0, ISET), diff --git a/usr/src/old/as.vax/astoks.h b/usr/src/old/as.vax/astoks.h index c389582e65..fd52872a58 100644 --- a/usr/src/old/as.vax/astoks.h +++ b/usr/src/old/as.vax/astoks.h @@ -1,5 +1,5 @@ /* Copyright (c) 1980 Regents of the University of California */ -/* "@(#)astoks.h 4.1 %G%" */ +/* "@(#)astoks.h 4.2 %G%" */ /* * Message to the wary: The order of tokens has been * hand optimized and assigned to that all switch statements @@ -39,6 +39,7 @@ # define ILINENO 19 # define IABORT 20 # define IFILL 21 +# define IQUAD 22 /* * Tokens between ISTAB and REG are used in the per token switch */