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
18 lines
355 B
LLVM
18 lines
355 B
LLVM
; 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
|