aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/AArch64/neon-bsl.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/neon-bsl.ll')
-rw-r--r--test/CodeGen/AArch64/neon-bsl.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/CodeGen/AArch64/neon-bsl.ll b/test/CodeGen/AArch64/neon-bsl.ll
index 6bd923d..c55fd01 100644
--- a/test/CodeGen/AArch64/neon-bsl.ll
+++ b/test/CodeGen/AArch64/neon-bsl.ll
@@ -220,3 +220,16 @@ entry:
ret <2 x double> %vbsl3.i
}
+define <2 x double> @test_bsl_v2f64(<2 x i1> %v1, <2 x double> %v2, <2 x double> %v3) {
+; CHECK-LABEL: test_bsl_v2f64:
+; CHECK: bsl {{v[0-9]+}}.16b, {{v[0-9]+}}.16b, {{v[0-9]+}}.16b
+ %1 = select <2 x i1> %v1, <2 x double> %v2, <2 x double> %v3
+ ret <2 x double> %1
+}
+
+define <4 x float> @test_bsl_v4f32(<4 x i1> %v1, <4 x float> %v2, <4 x float> %v3) {
+; CHECK-LABEL: test_bsl_v4f32:
+; CHECK: bsl {{v[0-9]+}}.16b, {{v[0-9]+}}.16b, {{v[0-9]+}}.16b
+ %1 = select <4 x i1> %v1, <4 x float> %v2, <4 x float> %v3
+ ret <4 x float> %1
+}