diff options
| author | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-20 15:31:45 -0400 |
|---|---|---|
| committer | Brad Lewis <22850972+BradLewis@users.noreply.github.com> | 2025-09-20 15:31:45 -0400 |
| commit | b0ba0838c467c43a92563baf84401e10aae23050 (patch) | |
| tree | 381c9c2668bc936b0e9d3671599b4fd91f20bf02 /src/server/analysis.odin | |
| parent | c8060630c01f8f46ae12dcc60b96b77a22f29751 (diff) | |
Add simd tag to simd array hover information
Diffstat (limited to 'src/server/analysis.odin')
| -rw-r--r-- | src/server/analysis.odin | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/server/analysis.odin b/src/server/analysis.odin index 7798be9..20c7749 100644 --- a/src/server/analysis.odin +++ b/src/server/analysis.odin @@ -3224,6 +3224,9 @@ make_symbol_array_from_ast :: proc(ast_context: ^AstContext, v: ast.Array_Type, if array_is_soa(v) { symbol.flags |= {.Soa} } + if array_is_simd(v) { + symbol.flags |= {.Simd} + } return symbol } |