mirror of
https://github.com/github/codeql.git
synced 2026-04-26 17:25:19 +02:00
Before this change, `delete` and `delete[]` expressions had no control flow after them, which caused the reachability analysis to remove all code after a delete expression. This commit adds placeholder support for delete expression by translating them to `NoOp` instructions so their presence doesn't cause large chunks of the program to be removed.