We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 545c243 commit 0727689Copy full SHA for 0727689
test/embedded/wasm/classes.swift
@@ -15,6 +15,9 @@
15
16
int putchar(int c) { return c; }
17
void free(void *ptr) {}
18
+void *memmove(void *dest, const void *src, size_t n) {
19
+ return __builtin_memmove(dest, src, n);
20
+}
21
22
int posix_memalign(void **memptr, size_t alignment, size_t size) {
23
uintptr_t mem = __builtin_wasm_memory_grow(0, (size + 0xffff) / 0x10000);
0 commit comments