You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
683 B
18 lines
683 B
; RUN: llc -filetype=obj %s -o %t.main.o
|
|
; RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %p/Inputs/ret32.s -o %t.ret32.o
|
|
; RUN: wasm-ld -o %t.wasm %t.main.o %t.ret32.o 2>&1 | FileCheck %s -check-prefix=CHECK-WARN
|
|
; RUN: not wasm-ld --fatal-warnings -o %t.wasm %t.main.o %t.ret32.o 2>&1 | FileCheck %s -check-prefix=CHECK-FATAL
|
|
|
|
; CHECK-WARN: warning: function signature mismatch: ret32
|
|
; CHECK-FATAL: error: function signature mismatch: ret32
|
|
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
define hidden void @_start() local_unnamed_addr #0 {
|
|
entry:
|
|
%call = tail call i32 @ret32(i32 1, i64 2, i32 3) #2
|
|
ret void
|
|
}
|
|
|
|
declare i32 @ret32(i32, i64, i32) local_unnamed_addr #1
|