Fix new RuntimeError integration with the LLVM-backend

This commit is contained in:
Mark McCaskey
2020-04-27 12:55:58 -07:00
parent 2bbe3406cf
commit cffdb387f7
10 changed files with 20 additions and 20 deletions

View File

@@ -13,7 +13,7 @@ MemoryManager::~MemoryManager() {
callbacks.dealloc_memory(read_section.base, read_section.size);
callbacks.dealloc_memory(readwrite_section.base, readwrite_section.size);
}
void unwinding_setjmp(jmp_buf stack_out, void (*func)(void *), void *userdata) {
void unwinding_setjmp(jmp_buf &stack_out, void (*func)(void *), void *userdata) {
if (setjmp(stack_out)) {
} else {