about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix S Klock II <pnkfelix@pnkfx.org>2023-10-17 11:31:30 -0400
committerGitHub <noreply@github.com>2023-10-17 11:31:30 -0400
commit665da1ed320abeaf276dafbfd041ebcda50034cf (patch)
treecc8c59fdcb92853bad3c8338945189c07db7406a
parent7d0675125c948fbf78f8dbfaf8d6824c2263082e (diff)
downloadrust-665da1ed320abeaf276dafbfd041ebcda50034cf.tar.gz
rust-665da1ed320abeaf276dafbfd041ebcda50034cf.zip
Update tests/run-make/wasm-builtins-import/main.rs
placate tidy (hopefully)
-rw-r--r--tests/run-make/wasm-builtins-import/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/run-make/wasm-builtins-import/main.rs b/tests/run-make/wasm-builtins-import/main.rs
index 3b068d8d79e..5eb99df6ff7 100644
--- a/tests/run-make/wasm-builtins-import/main.rs
+++ b/tests/run-make/wasm-builtins-import/main.rs
@@ -9,6 +9,7 @@ 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 (externally defined) 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.
     a * b
 }