Commit 9af4b016 authored by Rob Pike's avatar Rob Pike

5l: attempt to fix arm build

TBR=rsc

R=golang-dev
CC=golang-dev
https://golang.org/cl/5647049
parent 0a7ad329
...@@ -540,7 +540,7 @@ loop: ...@@ -540,7 +540,7 @@ loop:
s->type = SBSS; s->type = SBSS;
s->value = 0; s->value = 0;
} }
if(s->type != SBSS) { if(s->type != SBSS && !s->dupok) {
diag("redefinition: %s\n%P", s->name, p); diag("redefinition: %s\n%P", s->name, p);
s->type = SBSS; s->type = SBSS;
s->value = 0; s->value = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment