about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/run-make/wasm-builtins-import/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-make/wasm-builtins-import/main.rs b/tests/run-make/wasm-builtins-import/main.rs
index d7dbbe32ca4..3b068d8d79e 100644
--- a/tests/run-make/wasm-builtins-import/main.rs
+++ b/tests/run-make/wasm-builtins-import/main.rs
@@ -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.
     a * b
 }