From c38b75cd9bbbb985a59a4c3d16e5b11ca1277480 Mon Sep 17 00:00:00 2001 From: Yingchi Long Date: Sat, 22 Jun 2024 23:04:26 +0800 Subject: [PATCH] commands/compiler: add msimd doc-comments --- src/commands/compiler.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/commands/compiler.ts b/src/commands/compiler.ts index 3fe58c6..1615f36 100644 --- a/src/commands/compiler.ts +++ b/src/commands/compiler.ts @@ -9,6 +9,9 @@ export interface GeneralOptions { } export interface Sw64TargetOptions { + /** + * Whether to enable "-msimd" to generate SIMD instructions. + */ simd?: boolean; }