1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:24:41 -07:00

fix 386/arm builds

R=rsc
APPROVED=rsc
DELTA=2  (2 added, 0 deleted, 0 changed)
OCL=33640
CL=33645
This commit is contained in:
Kai Backman 2009-08-21 10:53:31 -07:00
parent e107afddc5
commit 005509e367
2 changed files with 2 additions and 0 deletions

View File

@ -138,6 +138,7 @@ dodata(void)
xdefine("setR12", SDATA, 0L+BIG);
xdefine("bdata", SDATA, 0L);
xdefine("data", SBSS, 0);
xdefine("edata", SDATA, datsize);
xdefine("end", SBSS, datsize+bsssize);
xdefine("etext", STEXT, 0L);

View File

@ -134,6 +134,7 @@ dodata(void)
s->value = bsssize + datsize;
bsssize += t;
}
xdefine("data", SBSS, 0);
xdefine("edata", SBSS, datsize);
xdefine("end", SBSS, bsssize + datsize);
}