From e4838a6225239b454d3c19ebecc69970ebd8abcd Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 25 Apr 1988 10:31:33 +0000 Subject: [PATCH] dont generate .data4 --- mach/pdp/cg/mach.c | 4 ++-- mach/pdp/ncg/mach.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mach/pdp/cg/mach.c b/mach/pdp/cg/mach.c index 65a428216..dddfdae28 100644 --- a/mach/pdp/cg/mach.c +++ b/mach/pdp/cg/mach.c @@ -38,10 +38,10 @@ con_mult(sz) word sz; { if (sz != 4) fatal("bad icon/ucon size"); + l = atol(str); #ifdef ACK_ASS - fprintf(codefile,".data4 %s\n",str); + fprintf(codefile,".data2 %o, %o !%s\n",(int)(l>>16),(int)l, str); #else - l = atol(str); fprintf(codefile,"\t%o;%o\n",(int)(l>>16),(int)l); #endif } diff --git a/mach/pdp/ncg/mach.c b/mach/pdp/ncg/mach.c index 65a428216..dddfdae28 100644 --- a/mach/pdp/ncg/mach.c +++ b/mach/pdp/ncg/mach.c @@ -38,10 +38,10 @@ con_mult(sz) word sz; { if (sz != 4) fatal("bad icon/ucon size"); + l = atol(str); #ifdef ACK_ASS - fprintf(codefile,".data4 %s\n",str); + fprintf(codefile,".data2 %o, %o !%s\n",(int)(l>>16),(int)l, str); #else - l = atol(str); fprintf(codefile,"\t%o;%o\n",(int)(l>>16),(int)l); #endif } -- 2.34.1