Commit 6c007bb0 authored by Ian Lance Taylor's avatar Ian Lance Taylor

runtime: only use a single variable in USED

The gccgo version of USED only accepts a single variable, so
this simplifies merging.

LGTM=minux, dave
R=golang-codereviews, minux, dave
CC=golang-codereviews
https://golang.org/cl/115630043
parent aac1eabc
......@@ -55,7 +55,8 @@ runtime·netpollclose(uintptr fd)
void
runtime·netpollarm(PollDesc* pd, int32 mode)
{
USED(pd, mode);
USED(pd);
USED(mode);
runtime·throw("unused");
}
......
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