summaryrefslogtreecommitdiffstats
path: root/tests/autodiff/reverse-while-loop-3.slang.expected.txt
Commit message (Collapse)AuthorAge
* Fix `tests\autodiff\reverse-while-loop-3.slang` test (#4886)ArielG-NV2024-08-20
| | | | | | | | | | | | | * Fix `tests\autodiff\reverse-while-loop-3.slang` test Fixes: #4876 Fix `tests\autodiff\reverse-while-loop-3.slang` test to have correct listed output values * set default to 1 (different val) --------- Co-authored-by: Yong He <yonghe@outlook.com>
* Fix loop inversion issue that caused ordinary blocks with multiple ↵Sai Praveen Bangaru2023-09-18
predecessors (#3211) * Add test case for while loop * Fix loop inversion issue that caused ordinary blocks with multiple predecessors The original version can leave the CFG in an invalid state with `e4` not being a break block or merge point, but having multiple predecessors. The updated version creates a separate jump block for each break instruction to avoid this issue. * Fixup tests