wasm: force single threaded

This commit is contained in:
Shritesh Bhattarai
2019-04-13 18:40:28 -05:00
committed by Andrew Kelley
parent 68d7e4a1b6
commit 0f1d92e2cf
3 changed files with 9 additions and 0 deletions

View File

@@ -1371,6 +1371,10 @@ bool target_is_wasm(const ZigTarget *target) {
return target->arch == ZigLLVM_wasm32 || target->arch == ZigLLVM_wasm64;
}
bool target_is_single_threaded(const ZigTarget *target) {
return target_is_wasm(target);
}
ZigLLVM_EnvironmentType target_default_abi(ZigLLVM_ArchType arch, Os os) {
switch (os) {
case OsFreestanding: