From adda5a0f12ceb27bfddfeacccfc0aa3dbc2861b1 Mon Sep 17 00:00:00 2001 From: Ermal Kaleci Date: Mon, 14 Oct 2024 08:56:26 +0200 Subject: [PATCH] improve runtime api return value names (#81) --- crates/llvm-context/src/polkavm/context/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/llvm-context/src/polkavm/context/mod.rs b/crates/llvm-context/src/polkavm/context/mod.rs index b6196f3..a964cca 100644 --- a/crates/llvm-context/src/polkavm/context/mod.rs +++ b/crates/llvm-context/src/polkavm/context/mod.rs @@ -907,7 +907,7 @@ where .copied() .map(inkwell::values::BasicMetadataValueEnum::from) .collect::>(), - &format!("runtime API call {name}"), + &format!("runtime_api_{name}_return_value"), ) .unwrap() .try_as_basic_value()