aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-11-14 10:57:48 -0800
committerRuss Cox <rsc@golang.org>2008-11-14 10:57:48 -0800
commitf8b20e40838e90f6ac0eae383749189bac73b73c (patch)
tree1d9704c3fa4fe266cd191cfd002fdb4970d9b8ae /src/runtime/runtime.c
parent7832ab5ba0b53622b978acf1aacd8f61f2a44ca5 (diff)
downloadgo-f8b20e40838e90f6ac0eae383749189bac73b73c.tar.xz
add cov, prof to default build; clean up compiler warnings
R=r DELTA=8 (1 added, 0 deleted, 7 changed) OCL=19245 CL=19245
Diffstat (limited to 'src/runtime/runtime.c')
-rw-r--r--src/runtime/runtime.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c
index ea2c432396..766f16f6d4 100644
--- a/src/runtime/runtime.c
+++ b/src/runtime/runtime.c
@@ -674,6 +674,7 @@ memcopy(uint32 s, void *a, void *b)
static uint64
stringhash(uint32 s, string *a)
{
+ USED(s);
return memhash((*a)->len, (*a)->str);
}