Skip to content

Commit

Permalink
Update tests/run-make/wasm-builtins-import/main.rs
Browse files Browse the repository at this point in the history
clarify seemingly circular reference
  • Loading branch information
pnkfelix authored Oct 17, 2023
1 parent a6f7596 commit 7d06751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/run-make/wasm-builtins-import/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ fn my_panic(_info: &core::panic::PanicInfo) -> ! {
#[no_mangle]
pub fn multer(a: i128, b: i128) -> i128 {
// Trigger usage of the __multi3 compiler intrinsic which then leads to an imported function
// such as panic or __multi3 in case of a bug. We verify that no imports exist in our verifier.
// such as panic or __multi3 (externally defined) in case of a bug. We verify that no imports exist in our verifier.

Check failure on line 12 in tests/run-make/wasm-builtins-import/main.rs

View workflow job for this annotation

GitHub Actions / PR - mingw-check-tidy

line longer than 100 chars
a * b
}

0 comments on commit 7d06751

Please sign in to comment.