[clang] 3b96294 - [WebAssembly] Update type checker message in notypecheck.s
Heejin Ahn via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 26 19:00:29 PDT 2024
Author: Heejin Ahn
Date: 2024-09-27T01:59:36Z
New Revision: 3b96294f2d3dd5d9646803c7c4e35039a373792e
URL: https://github.com/llvm/llvm-project/commit/3b96294f2d3dd5d9646803c7c4e35039a373792e
DIFF: https://github.com/llvm/llvm-project/commit/3b96294f2d3dd5d9646803c7c4e35039a373792e.diff
LOG: [WebAssembly] Update type checker message in notypecheck.s
This was missing from https://github.com/llvm/llvm-project/pull/110094.
Added:
Modified:
clang/test/Driver/notypecheck.s
Removed:
################################################################################
diff --git a/clang/test/Driver/notypecheck.s b/clang/test/Driver/notypecheck.s
index f6e78d6791182d..8e924b57fbdc00 100644
--- a/clang/test/Driver/notypecheck.s
+++ b/clang/test/Driver/notypecheck.s
@@ -5,7 +5,7 @@
# Verify that without -Wa,--no-type-check the assembler will error out
# RUN: not %clang %s -c -o tmp.o -target wasm32-unknown-unknown 2>&1 | FileCheck --check-prefix=ERROR %s
-# ERROR: error: popped i64, expected i32
+# ERROR: error: type mismatch, expected [i32] but got [i64]
foo:
.functype foo () -> (i32)
More information about the cfe-commits
mailing list