mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-16 18:35:53 +00:00

Also, add a check to ensure that when main has the expected signature we do not create a wrapper. Differential Revision: https://reviews.llvm.org/D51562 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@342157 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
407 B
LLVM
17 lines
407 B
LLVM
; RUN: llc < %s -asm-verbose=false -wasm-temporary-workarounds=false | FileCheck %s
|
|
|
|
; Test that main function with expected signature is not wrapped
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
define i32 @main(i32 %a, i8** %b) {
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK-LABEL: main:
|
|
; CHECK-NEXT: .param i32, i32
|
|
; CHECK-NEXT: .result i32
|
|
|
|
; CHECK-NOT: __original_main:
|