summaryrefslogtreecommitdiffstats
path: root/tests/language-feature/interfaces/generic-value-parameter-via-interface.slang
Commit message (Collapse)AuthorAge
* Avoid early specialization for witness tables in SimplifyIR (#7636)Jay Kwak2025-07-24
* Avoid early specialization for witness tables in SimplifyIR Prevents SimplifyIR from prematurely specializing witness tables before the main specialization pass. Witness tables are hoistable immutable objects that must maintain consistent signatures to avoid incorrect deduplication. SimplifyIR was incorrectly transforming expressions like "witness_table_t(%IFoo)(specialize(%7, %GenericValue4))" into "witness_table_t(%IFoo)(%Foo)" even when %GenericValue4 was unused. Fixes #7233 * Add a missing test file