
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
15 lines
626 B
C
15 lines
626 B
C
// RUN: %clang_cc1 -triple arm64-apple-darwin -target-feature +neon -fsyntax-only -ffreestanding -verify %s
|
|
// RUN: %clang_cc1 -triple aarch64_be-none-linux-gnu -target-feature +neon -fsyntax-only -ffreestanding -verify %s
|
|
|
|
#include <arm_neon.h>
|
|
|
|
// rdar://13527900
|
|
void vcopy_reject(float32x4_t vOut0, float32x4_t vAlpha, int t) {
|
|
vcopyq_laneq_f32(vOut0, 1, vAlpha, t); // expected-error {{argument to '__builtin_neon_vgetq_lane_f32' must be a constant integer}}
|
|
}
|
|
|
|
// rdar://problem/15256199
|
|
float32x4_t test_vmlsq_lane(float32x4_t accum, float32x4_t lhs, float32x2_t rhs) {
|
|
return vmlsq_lane_f32(accum, lhs, rhs, 1);
|
|
}
|