[mlir][capi] Fix leak in test

This commit is contained in:
Daniel Resnick 2022-04-04 12:26:13 -06:00
parent dacb2713c4
commit e394c4e5d9
1 changed files with 1 additions and 0 deletions

View File

@ -512,6 +512,7 @@ void testExternalPass() {
}
mlirTypeIDAllocatorDestroy(typeIDAllocator);
mlirModuleDestroy(module);
mlirContextDestroy(ctx);
}