commands/compiler: add msimd doc-comments

This commit is contained in:
2024-06-22 23:04:26 +08:00
parent 0916f5251a
commit c38b75cd9b

View File

@@ -9,6 +9,9 @@ export interface GeneralOptions {
} }
export interface Sw64TargetOptions { export interface Sw64TargetOptions {
/**
* Whether to enable "-msimd" to generate SIMD instructions.
*/
simd?: boolean; simd?: boolean;
} }