diff options
| author | Yong He <yonghe@outlook.com> | 2024-07-31 10:03:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-31 10:03:39 -0700 |
| commit | 134f8ccc930a8da28808c2e288344c21c67a577e (patch) | |
| tree | 483c09957f94aa626c2e866ebc7634591d725657 /tools | |
| parent | 6e4b82741893be55f6216c31e19650029c667078 (diff) | |
Fix IR lowering for generic interface types. (#4761)
* Fix IR lowering for generic interface types.
* Fix.
* Fix.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/slang-test/slang-test-main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/slang-test/slang-test-main.cpp b/tools/slang-test/slang-test-main.cpp index cd3ca3d54..06eae7047 100644 --- a/tools/slang-test/slang-test-main.cpp +++ b/tools/slang-test/slang-test-main.cpp @@ -4617,8 +4617,8 @@ SlangResult innerMain(int argc, char** argv) int main(int argc, char** argv) { const SlangResult res = innerMain(argc, argv); - slang::shutdown(); + Slang::RttiInfo::deallocateAll(); #ifdef _MSC_VER _CrtDumpMemoryLeaks(); |
