mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-18 19:31:22 +00:00
Return compile error (llvm) for setting immutable global
This commit is contained in:
@ -1151,7 +1151,9 @@ impl FunctionCodeGenerator<CodegenError> for LLVMFunctionCodeGenerator {
|
|||||||
builder.build_store(ptr_to_value, value);
|
builder.build_store(ptr_to_value, value);
|
||||||
}
|
}
|
||||||
GlobalCache::Const { value: _ } => {
|
GlobalCache::Const { value: _ } => {
|
||||||
unreachable!("cannot set non-mutable globals")
|
return Err(CodegenError {
|
||||||
|
message: "global is immutable".to_string(),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -825,7 +825,6 @@ llvm:skip:skip-stack-guard-page.wast:* # Spec running forever or (signal: 4, SIG
|
|||||||
llvm:skip:linking.wast:236 # terminating with uncaught exception of type WasmTrap
|
llvm:skip:linking.wast:236 # terminating with uncaught exception of type WasmTrap
|
||||||
llvm:skip:linking.wast:248 # terminating with uncaught exception of type WasmTrap
|
llvm:skip:linking.wast:248 # terminating with uncaught exception of type WasmTrap
|
||||||
|
|
||||||
llvm:fail:globals.wast:243 # AssertInvalid - caught panic Any
|
|
||||||
llvm:fail:i32.wast:243 # AssertReturn - result I32(61374799) ("0x3a8814f") does not match expected I32(32) ("0x20")
|
llvm:fail:i32.wast:243 # AssertReturn - result I32(61374799) ("0x3a8814f") does not match expected I32(32) ("0x20")
|
||||||
llvm:fail:i32.wast:252 # AssertReturn - result I32(61374816) ("0x3a88160") does not match expected I32(32) ("0x20")
|
llvm:fail:i32.wast:252 # AssertReturn - result I32(61374816) ("0x3a88160") does not match expected I32(32) ("0x20")
|
||||||
llvm:fail:i64.wast:243 # AssertReturn - result I64(4356342255) ("0x103a881ef") does not match expected I64(64) ("0x40")
|
llvm:fail:i64.wast:243 # AssertReturn - result I64(4356342255) ("0x103a881ef") does not match expected I64(64) ("0x40")
|
||||||
|
Reference in New Issue
Block a user