CPP: Add changenote for adding delete to the IR.

This commit is contained in:
Alex Eyers-Taylor
2023-08-29 12:13:40 +01:00
parent 24b679d5a0
commit 9df5e30034

View File

@@ -0,0 +1,4 @@
---
category: minorAnalysis
---
* `delete` and `delete[]` are now modeled as calls to the relevant `operator delete` in the IR. In the case of a dynamic delete call a new instruction `VirtualDeleteFunctionAddress` is used to represent a function that dispatches to the correct delete implementation.