mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-12 08:31:21 +00:00
Merge #870
870: Fix unused value warning due to inkwell API change. NFC. r=nlewycky a=nlewycky # Description Fix unused value warning due to inkwell API change. No functionality change. Co-authored-by: Nick Lewycky <nick@wasmer.io>
This commit is contained in:
@ -935,7 +935,8 @@ impl FunctionCodeGenerator<CodegenError> for LLVMFunctionCodeGenerator {
|
||||
let signal_mem = ctx.signal_mem();
|
||||
let iv = builder
|
||||
.build_store(signal_mem, context.i8_type().const_int(0 as u64, false));
|
||||
iv.set_volatile(true);
|
||||
// Any 'store' can be made volatile.
|
||||
iv.set_volatile(true).unwrap();
|
||||
finalize_opcode_stack_map(
|
||||
intrinsics,
|
||||
builder,
|
||||
|
Reference in New Issue
Block a user