aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/WebAssembly/main-declaration.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/WebAssembly/main-declaration.ll')
-rw-r--r--test/CodeGen/WebAssembly/main-declaration.ll19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/CodeGen/WebAssembly/main-declaration.ll b/test/CodeGen/WebAssembly/main-declaration.ll
new file mode 100644
index 0000000000000..4e337850b81ad
--- /dev/null
+++ b/test/CodeGen/WebAssembly/main-declaration.ll
@@ -0,0 +1,19 @@
+; RUN: llc < %s -asm-verbose=false -wasm-temporary-workarounds=false | FileCheck %s
+
+; Test main functions with alternate signatures.
+
+target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
+target triple = "wasm32-unknown-unknown-wasm"
+
+declare void @main()
+
+define void @foo() {
+ call void @main()
+ ret void
+}
+
+; CHECK-NOT: __original_main
+; CHECK-LABEL: foo:
+; CHECK-NEXT: call main@FUNCTION
+; CHECK-NEXT: end_function
+; CHECK-NOT: __original_main