Commit f554c90c authored by Dave Cheney's avatar Dave Cheney Committed by Russ Cox

8l: remove left over debugging

        This line was triggering a null dereference warning
        under clang-3.0. The line was added in a46819aa9150
        but compared to it's sibling in 6l it appears to be
        leftover debugging.

R=rsc
CC=golang-dev
https://golang.org/cl/5049042
parent fc5889d4
...@@ -417,7 +417,7 @@ adddynsym(Sym *s) ...@@ -417,7 +417,7 @@ adddynsym(Sym *s)
return; return;
if(s->dynimpname == nil) if(s->dynimpname == nil)
diag("adddynsym: no dynamic name for %s", s->name, *(int32*)0); diag("adddynsym: no dynamic name for %s", s->name);
if(iself) { if(iself) {
s->dynid = nelfsym++; s->dynid = nelfsym++;
......
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