test_module::test_garbage_ir_fails_create_module_from_ir
triggers assertion in llvm 10
#198
Labels
Milestone
To Reproduce
Build LLVM 10 with Asserts enabled and run inkwell tests against it.
Describe the Bug
The assertion occurs inside the call to
LLVMParseIRInContext
. The function checks whether this is bitcode or not, and if not it goes down a path parsing plain assembly text which in turn calls MemoryBuffer::getMemBuffer() on a MemoryBufferRef referring to the original memory buffer we created. That call assumes the buffer is null terminated.Expected Behavior
We get an Err() back from Context::create_module_from_ir.
LLVM Version (please complete the following information):
Additional Context
I started this expecting to find a bug in inkwell, but I think in this case LLVM isn't living up to its documented API guarantees. This may be a bug that needs to be fixed in LLVM. It should return an error instead of assert-failing on invalid input.
Possibly though, the test isn't testing what it meant to test. If you replace "garbage ir data" with "BC\xC0\xDEage ir data" then the test passes because it doesn't go through the
.ll
text file parsing path.The text was updated successfully, but these errors were encountered: