
The data layout strings do not have any effect on llc tests and will become misleadingly out of date as we continue to update the canonical data layout, so remove them from the tests. Differential Revision: https://reviews.llvm.org/D105842
19 lines
422 B
LLVM
19 lines
422 B
LLVM
; RUN: llc < %s -asm-verbose=false | FileCheck %s
|
|
|
|
; Test main functions with alternate signatures.
|
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
define i32 @main() {
|
|
ret i32 0
|
|
}
|
|
|
|
; CHECK-LABEL: __original_main:
|
|
; CHECK-NEXT: .functype __original_main () -> (i32)
|
|
; CHECK-NEXT: i32.const 0
|
|
; CHECK-NEXT: end_function
|
|
|
|
; CHECK-LABEL: main:
|
|
; CHECK-NEXT: .functype main (i32, i32) -> (i32)
|
|
; CHECK: call __original_main
|