We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d77ac81 commit 8675b55Copy full SHA for 8675b55
llvm/test/CodeGen/WebAssembly/libcall_vectorized.ll
@@ -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