
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
// RUN: %clang_cc1 -triple arm64-apple-ios7.0 -target-feature +neon -ffreestanding -emit-llvm -O1 -o - %s | FileCheck %s
|
|
|
|
#include <arm_neon.h>
|
|
|
|
uint32x2_t test_vrsqrte_u32(uint32x2_t in) {
|
|
// CHECK-LABEL: @test_vrsqrte_u32
|
|
// CHECK: call <2 x i32> @llvm.aarch64.neon.ursqrte.v2i32(<2 x i32> %in)
|
|
return vrsqrte_u32(in);
|
|
}
|
|
|
|
float32x2_t test_vrsqrte_f32(float32x2_t in) {
|
|
// CHECK-LABEL: @test_vrsqrte_f32
|
|
// CHECK: call <2 x float> @llvm.aarch64.neon.frsqrte.v2f32(<2 x float> %in)
|
|
return vrsqrte_f32(in);
|
|
}
|
|
|
|
|
|
uint32x4_t test_vrsqrteq_u32(uint32x4_t in) {
|
|
// CHECK-LABEL: @test_vrsqrteq_u32
|
|
// CHECK: call <4 x i32> @llvm.aarch64.neon.ursqrte.v4i32(<4 x i32> %in)
|
|
return vrsqrteq_u32(in);
|
|
}
|
|
|
|
float32x4_t test_vrsqrteq_f32(float32x4_t in) {
|
|
// CHECK-LABEL: @test_vrsqrteq_f32
|
|
// CHECK: call <4 x float> @llvm.aarch64.neon.frsqrte.v4f32(<4 x float> %in)
|
|
return vrsqrteq_f32(in);
|
|
}
|
|
|
|
|
|
float32x2_t test_vrsqrts_f32(float32x2_t est, float32x2_t val) {
|
|
// CHECK-LABEL: @test_vrsqrts_f32
|
|
// CHECK: call <2 x float> @llvm.aarch64.neon.frsqrts.v2f32(<2 x float> %est, <2 x float> %val)
|
|
return vrsqrts_f32(est, val);
|
|
}
|
|
|
|
|
|
float32x4_t test_vrsqrtsq_f32(float32x4_t est, float32x4_t val) {
|
|
// CHECK-LABEL: @test_vrsqrtsq_f32
|
|
// CHECK: call <4 x float> @llvm.aarch64.neon.frsqrts.v4f32(<4 x float> %est, <4 x float> %val)
|
|
return vrsqrtsq_f32(est, val);
|
|
}
|
|
|