Commit 987649e0 authored by Russ Cox's avatar Russ Cox

build: fix more unused parameters

R=ken2
CC=golang-dev
https://golang.org/cl/4971042
parent 61f84a2c
...@@ -86,6 +86,8 @@ gbranch(int as, Type *t) ...@@ -86,6 +86,8 @@ gbranch(int as, Type *t)
{ {
Prog *p; Prog *p;
USED(t);
p = prog(as); p = prog(as);
p->to.type = D_BRANCH; p->to.type = D_BRANCH;
p->to.branch = P; p->to.branch = P;
......
...@@ -549,6 +549,8 @@ genembedtramp(Type *rcvr, Type *method, Sym *newnam, int iface) ...@@ -549,6 +549,8 @@ genembedtramp(Type *rcvr, Type *method, Sym *newnam, int iface)
Prog *p; Prog *p;
Type *f; Type *f;
USED(iface);
e = method->sym; e = method->sym;
for(d=0; d<nelem(dotlist); d++) { for(d=0; d<nelem(dotlist); d++) {
c = adddot1(e, rcvr, d, nil, 0); c = adddot1(e, rcvr, d, nil, 0);
......
...@@ -84,6 +84,7 @@ gbranch(int as, Type *t) ...@@ -84,6 +84,7 @@ gbranch(int as, Type *t)
{ {
Prog *p; Prog *p;
USED(t);
p = prog(as); p = prog(as);
p->to.type = D_BRANCH; p->to.type = D_BRANCH;
p->to.branch = P; p->to.branch = P;
...@@ -1957,5 +1958,9 @@ sudoclean(void) ...@@ -1957,5 +1958,9 @@ sudoclean(void)
int int
sudoaddable(int as, Node *n, Addr *a) sudoaddable(int as, Node *n, Addr *a)
{ {
USED(as);
USED(n);
USED(a);
return 0; return 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