aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/go-memclr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/runtime/go-memclr.c')
-rw-r--r--libgo/runtime/go-memclr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/runtime/go-memclr.c b/libgo/runtime/go-memclr.c
index de6f39a..e478b65 100644
--- a/libgo/runtime/go-memclr.c
+++ b/libgo/runtime/go-memclr.c
@@ -6,11 +6,11 @@
#include "runtime.h"
-void memclr(void *, uintptr)
- __asm__ (GOSYM_PREFIX "runtime.memclr");
+void memclrNoHeapPointers(void *, uintptr)
+ __asm__ (GOSYM_PREFIX "runtime.memclrNoHeapPointers");
void
-memclr (void *p1, uintptr len)
+memclrNoHeapPointers (void *p1, uintptr len)
{
__builtin_memset (p1, 0, len);
}