mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
Fix build breakage caused by memory leaks in llvm-c-test
I accidently introduced those in r227319. llvm-svn: 227339
This commit is contained in:
parent
159f2e1618
commit
132e30a62b
@ -22,6 +22,8 @@ int add_named_metadata_operand(void) {
|
|||||||
// This used to trigger an assertion
|
// This used to trigger an assertion
|
||||||
LLVMAddNamedMetadataOperand(m, "name", LLVMMDNode(values, 1));
|
LLVMAddNamedMetadataOperand(m, "name", LLVMMDNode(values, 1));
|
||||||
|
|
||||||
|
LLVMDisposeModule(m);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -35,5 +37,7 @@ int set_metadata(void) {
|
|||||||
LLVMGetMDKindID("kind", 4),
|
LLVMGetMDKindID("kind", 4),
|
||||||
LLVMMDNode(values, 1));
|
LLVMMDNode(values, 1));
|
||||||
|
|
||||||
|
LLVMDisposeBuilder(b);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user