mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-21 04:25:45 -04:00

This includes a fix so that it doesn't transform declarations, and it puts the functionality under control of a command-line option which is off by default to avoid breaking existing setups. llvm-svn: 320196
20 lines
462 B
LLVM
20 lines
462 B
LLVM
; 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
|