aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/WebAssembly/main-declaration.ll
blob: 445300f73fd14f346b5e7e50d5a32fc3375bd073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; RUN: llc < %s -asm-verbose=false | FileCheck %s

; Test main functions with alternate signatures.

target triple = "wasm32-unknown-unknown"

declare i32 @main()

define i32 @foo() {
  %t = call i32 @main()
  ret i32 %t
}

; CHECK-LABEL: foo:
; CHECK-NEXT:    .functype foo () -> (i32)
; CHECK-NEXT:    call __original_main
; CHECK-NEXT:    end_function