Skip to content
Snippets Groups Projects
Commit f02202b2 authored by Yaron Keren's avatar Yaron Keren
Browse files

Plug a memory leak in NeonEmitter: Intrinsics allocated were never released.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244196 91177308-0d34-0410-b5e6-96231b3b80d8
parent 4c1f4e71
No related branches found
No related tags found
No related merge requests found
......@@ -532,6 +532,12 @@ public:
ClassMap[NoTestOpI] = ClassNoTest;
}
~NeonEmitter() {
for (auto &P : IntrinsicMap)
for (Intrinsic *I : P.second)
delete I;
}
// run - Emit arm_neon.h.inc
void run(raw_ostream &o);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment