Skip to content

Commit 8675b55

Browse files
committed
Precommit test
1 parent d77ac81 commit 8675b55

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
; RUN: llc < %s -disable-wasm-fallthrough-return-opt -wasm-keep-registers -mattr=+simd128 | FileCheck %s
3+
4+
target triple = "wasm32-unknown-unknown"
5+
6+
declare <4 x float> @llvm.exp10.v4f32(<4 x float>)
7+
8+
; XFAIL: target={{.*}}
9+
define <4 x float> @exp10_f32v4(<4 x float> %v) {
10+
entry:
11+
%r = call <4 x float> @llvm.exp10.v4f32(<4 x float> %v)
12+
ret <4 x float> %r
13+
}

0 commit comments

Comments
 (0)