summary refs log tree commit diff stats
path: root/tests/destructor/t17198.nim
Commit message (Collapse)AuthorAgeFilesLines
* fixes #17198, DFA failure on large case stmts (#17210)Saem Ghani2021-03-021-0/+32
This alters the DFA control flow graph generation for case statments. Gotos are now generated as a chained link, this ensures that evaluation of variant branches collapses as early as possible, without hitting the 2k call limit.