1
0
mirror of https://github.com/golang/go synced 2024-11-22 01:14:40 -07:00

arm: cleanup build warnings

trivial stuff
lex.c: these prototypes are in a.h
asm.c: unused variables
arm-pass.txt deal w/ sieve.go rename and addition of sieve2.go

R=kaib, rsc
CC=golang-dev
https://golang.org/cl/244041
This commit is contained in:
Dean Prichard 2010-03-08 18:13:19 -08:00 committed by Russ Cox
parent 96c9603a43
commit 5b1a196c37
3 changed files with 4 additions and 6 deletions

View File

@ -46,9 +46,6 @@ systemtype(int sys)
return sys&Plan9; return sys&Plan9;
} }
void* alloc(int32);
void* allocn(void*, int32, int32);
void void
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {

View File

@ -195,8 +195,8 @@ vlong elfstr[NElfStr];
void void
doelf(void) doelf(void)
{ {
Sym *s, *shstrtab, *dynamic, *dynstr, *d; Sym *s, *shstrtab, *dynamic, *dynstr;
int h, nsym, t; int h, nsym;
if(!iself) if(!iself)
return; return;

View File

@ -8,7 +8,8 @@ chan/perm.go
chan/powser1.go chan/powser1.go
chan/powser2.go chan/powser2.go
chan/select.go chan/select.go
chan/sieve.go chan/sieve1.go
chan/sieve2.go
chancap.go chancap.go
char_lit.go char_lit.go
closedchan.go closedchan.go