]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/8l/asm.c: Unused function arguments, suppress warnings.
authorLucio De Re <lucio.dere@gmail.com>
Sun, 10 Feb 2013 23:15:56 +0000 (10:15 +1100)
committerNigel Tao <nigeltao@golang.org>
Sun, 10 Feb 2013 23:15:56 +0000 (10:15 +1100)
R=golang-dev, nigeltao
CC=golang-dev
https://golang.org/cl/7304069

src/cmd/8l/asm.c

index 76ebdb91356a8cdc195f83594c007e903a676a94..a00174c3681261f5b4144614fa15d57e15629e9b 100644 (file)
@@ -104,6 +104,9 @@ lookuprel(void)
 void
 adddynrela(Sym *rela, Sym *s, Reloc *r)
 {
+       USED(rela);
+       USED(s);
+       USED(r);
        sysfatal("adddynrela not implemented");
 }