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
2 parents d1e2c6a + 1fb2d8e commit 913f3faCopy full SHA for 913f3fa
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