mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-15 07:51:32 +00:00
Add SIMD prerequisites (#469)
This commit is contained in:
3
std/assembly/vector.ts
Normal file
3
std/assembly/vector.ts
Normal file
@ -0,0 +1,3 @@
|
||||
@sealed
|
||||
export abstract class V128 {
|
||||
}
|
@ -10,6 +10,8 @@ globalScope.ASC_OPTIMIZE_LEVEL = 3;
|
||||
globalScope.ASC_SHRINK_LEVEL = 0;
|
||||
globalScope.ASC_FEATURE_MUTABLE_GLOBAL = false;
|
||||
globalScope.ASC_FEATURE_SIGN_EXTENSION = false;
|
||||
globalScope.ASC_FEATURE_BULK_MEMORY = false;
|
||||
globalScope.ASC_FEATURE_SIMD = false;
|
||||
|
||||
var F64 = new Float64Array(1);
|
||||
var U64 = new Uint32Array(F64.buffer);
|
||||
|
Reference in New Issue
Block a user