mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 15:39:00 +00:00
1a513a6964
This saves a small amount of code size, and is a first small step toward passing values on the stack across block boundaries. Differential Review: http://reviews.llvm.org/D20450 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270294 91177308-0d34-0410-b5e6-96231b3b80d8
32 lines
868 B
LLVM
32 lines
868 B
LLVM
; RUN: llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt | FileCheck %s
|
|
|
|
; Make sure that argument offsets are correct even if some arguments are unused.
|
|
|
|
target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
|
|
target triple = "wasm32-unknown-unknown"
|
|
|
|
; CHECK-LABEL: unused_first:
|
|
; CHECK-NEXT: .param i32, i32{{$}}
|
|
; CHECK-NEXT: .result i32{{$}}
|
|
; CHECK-NEXT: return $1{{$}}
|
|
define i32 @unused_first(i32 %x, i32 %y) {
|
|
ret i32 %y
|
|
}
|
|
|
|
; CHECK-LABEL: unused_second:
|
|
; CHECK-NEXT: .param i32, i32{{$}}
|
|
; CHECK-NEXT: .result i32{{$}}
|
|
; CHECK-NEXT: return $0{{$}}
|
|
define i32 @unused_second(i32 %x, i32 %y) {
|
|
ret i32 %x
|
|
}
|
|
|
|
; CHECK-LABEL: call_something:
|
|
; CHECK-NEXT: {{^}} i32.call $drop=, return_something@FUNCTION{{$}}
|
|
; CHECK-NEXT: return{{$}}
|
|
declare i32 @return_something()
|
|
define void @call_something() {
|
|
call i32 @return_something()
|
|
ret void
|
|
}
|