mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
41 lines
1.1 KiB
Swift
41 lines
1.1 KiB
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: split-file %s %t
|
|
// RUN: %swift-frontend -c %t/check.swift -parse-as-library -target wasm32-unknown-none-wasm \
|
|
// RUN: -enable-experimental-feature Embedded -Xcc -fdeclspec -disable-stack-protector \
|
|
// RUN: -o %t/check.o
|
|
// RUN: %clang -target wasm32-unknown-none-wasm %t/check.o %t/rt.c -nostdlib -o %t/check.wasm
|
|
// RUN: %target-run %t/check.wasm
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: CPU=wasm32
|
|
// REQUIRES: embedded_stdlib_cross_compiling
|
|
|
|
//--- rt.c
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
int putchar(int c) { return c; }
|
|
void free(void *ptr) {}
|
|
void *memmove(void *dest, const void *src, size_t n) {
|
|
return __builtin_memmove(dest, src, n);
|
|
}
|
|
|
|
int posix_memalign(void **memptr, size_t alignment, size_t size) {
|
|
uintptr_t mem = __builtin_wasm_memory_grow(0, (size + 0xffff) / 0x10000);
|
|
if (mem == -1) {
|
|
return -1;
|
|
}
|
|
*memptr = (void *)(mem * 0x10000);
|
|
*memptr = (void *)(((uintptr_t)*memptr + alignment - 1) & -alignment);
|
|
return 0;
|
|
}
|
|
|
|
//--- check.swift
|
|
|
|
class Foo {}
|
|
|
|
@_cdecl("_start")
|
|
func main() {
|
|
_ = Foo()
|
|
}
|