We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
argObjSyms
BailOutInfo
1 parent e2a9c77 commit 1fb2d8eCopy full SHA for 1fb2d8e
lib/Backend/BailOut.cpp
@@ -22,6 +22,12 @@ BailOutInfo::Clear(JitArenaAllocator * allocator)
22
{
23
this->capturedValues->constantValues.Clear(allocator);
24
this->capturedValues->copyPropSyms.Clear(allocator);
25
+
26
+ if (this->capturedValues->argObjSyms)
27
+ {
28
+ JitAdelete(allocator, this->capturedValues->argObjSyms);
29
+ }
30
31
JitAdelete(allocator, this->capturedValues);
32
}
33
this->usedCapturedValues.constantValues.Clear(allocator);
0 commit comments