mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
b714195257
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
19 lines
458 B
LLVM
19 lines
458 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"
|
|
|
|
define void @main() {
|
|
ret void
|
|
}
|
|
|
|
; CHECK-LABEL: .L__original_main:
|
|
; CHECK-NEXT: end_function
|
|
|
|
; CHECK-LABEL: main:
|
|
; CHECK-NEXT: .param i32, i32
|
|
; CHECK-NEXT: .result i32
|
|
; CHECK: call .L__original_main@FUNCTION
|