summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/WebAssembly/fast-isel-i256.ll
blob: a916a87d346d5b3c6b1b67c3fb083e640678b357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
; RUN: llc < %s -O0 -wasm-keep-registers
; PR36564
; PR37546

; Test that fast-isel properly copes with i256 arguments and return types.

target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128"
target triple = "wasm32-unknown-unknown"

; CHECK-LABEL: add:
; CHECK-NEXT: .functype add (i32, i64, i64, i64, i64, i64, i64, i64, i64) -> (){{$}}
; CHECK-NOT:  .result
; CHECK: end_function
define i256 @add(i256 %x, i256 %y) {
    %z = add i256 %x, %y
    ret i256 %z
}

; CHECK-LABEL: return_zero:
; CHECK-NEXT: .functype return_zero (i32) -> (){{$}}
; CHECK: end_function
define i256 @return_zero() {
    ret i256 0
}

; CHECK-LABEL: return_zero_with_params:
; CHECK-NEXT: .functype return_zero_with_params (i32, f32) -> (){{$}}
; CHECK: end_function
define i256 @return_zero_with_params(float %x) {
    ret i256 0
}
OpenPOWER on IntegriCloud