1; RUN: llc < %s -asm-verbose=false -verify-machineinstrs -disable-wasm-fallthrough-return-opt -wasm-keep-registers -wasm-disable-explicit-locals -mattr=+simd128 | FileCheck %s
2
3; Regression test for an ISel failure when a splatted load had more
4; than one use. The main tests for load_splat are in simd-offset.ll.
5
6target triple = "wasm32-unknown-unknown"
7
8; CHECK-LABEL: load_splat:
9; CHECK-NEXT: .functype load_splat (i32, i32) -> (i32)
10; CHECK-NEXT: i32.load8_u $[[E:[0-9]+]]=, 0($0){{$}}
11; CHECK-NEXT: v128.load8_splat $push[[V:[0-9]+]]=, 0($0){{$}}
12; CHECK-NEXT: v128.store 0($1), $pop[[V]]{{$}}
13; CHECK-NEXT: return $[[E]]{{$}}
14define i8 @load_splat(i8* %p, <16 x i8>* %out) {
15  %e = load i8, i8* %p
16  %v1 = insertelement <16 x i8> undef, i8 %e, i32 0
17  %v2 = shufflevector <16 x i8> %v1, <16 x i8> undef, <16 x i32> zeroinitializer
18  store <16 x i8> %v2, <16 x i8>* %out
19  ret i8 %e
20}
21