1 ; RUN: llc < %s --mtriple=wasm32-unknown-unknown -asm-verbose=false -wasm-disable-explicit-locals -wasm-keep-registers | FileCheck %s
2 ; RUN: llc < %s --mtriple=wasm64-unknown-unknown -asm-verbose=false -wasm-disable-explicit-locals -wasm-keep-registers | FileCheck %s
4 ; Test that truncating stores are assembled properly.
6 ; CHECK-LABEL: trunc_i8_i32:
7 ; CHECK: i32.store8 0($0), $1{{$}}
8 define void @trunc_i8_i32(ptr %p, i32 %v) {
9 %t = trunc i32 %v to i8
14 ; CHECK-LABEL: trunc_i16_i32:
15 ; CHECK: i32.store16 0($0), $1{{$}}
16 define void @trunc_i16_i32(ptr %p, i32 %v) {
17 %t = trunc i32 %v to i16
22 ; CHECK-LABEL: trunc_i8_i64:
23 ; CHECK: i64.store8 0($0), $1{{$}}
24 define void @trunc_i8_i64(ptr %p, i64 %v) {
25 %t = trunc i64 %v to i8
30 ; CHECK-LABEL: trunc_i16_i64:
31 ; CHECK: i64.store16 0($0), $1{{$}}
32 define void @trunc_i16_i64(ptr %p, i64 %v) {
33 %t = trunc i64 %v to i16
38 ; CHECK-LABEL: trunc_i32_i64:
39 ; CHECK: i64.store32 0($0), $1{{$}}
40 define void @trunc_i32_i64(ptr %p, i64 %v) {
41 %t = trunc i64 %v to i32