Skip to content

Commit 7d06751

Browse files
authored
Update tests/run-make/wasm-builtins-import/main.rs
clarify seemingly circular reference
1 parent a6f7596 commit 7d06751

File tree

1 file changed

+1
-1
lines changed
  • tests/run-make/wasm-builtins-import

1 file changed

+1
-1
lines changed

tests/run-make/wasm-builtins-import/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ fn my_panic(_info: &core::panic::PanicInfo) -> ! {
99
#[no_mangle]
1010
pub fn multer(a: i128, b: i128) -> i128 {
1111
// Trigger usage of the __multi3 compiler intrinsic which then leads to an imported function
12-
// such as panic or __multi3 in case of a bug. We verify that no imports exist in our verifier.
12+
// such as panic or __multi3 (externally defined) in case of a bug. We verify that no imports exist in our verifier.
1313
a * b
1414
}

0 commit comments

Comments
 (0)