
c17d9b4b125e5561925aa added REQUIRES lines to a lot of Arm and AArch64 test, but added them to the very beginning, before the existing update_cc_test_checks lines. This just moves them later so as to not mess up the existing ordering when the checks are regenerated.
15 lines
417 B
C
15 lines
417 B
C
// RUN: %clang_cc1 -triple thumbv7-none-eabi -target-feature +neon -target-feature +vfp4 -fsyntax-only -verify %s
|
|
// REQUIRES: aarch64-registered-target || arm-registered-target
|
|
|
|
#include <arm_neon.h>
|
|
|
|
// expected-no-diagnostics
|
|
|
|
void func(float32x2_t v2f32, float32x4_t v4f32) {
|
|
vfma_f32(v2f32, v2f32, v2f32);
|
|
vfmaq_f32(v4f32, v4f32, v4f32);
|
|
|
|
vfms_f32(v2f32, v2f32, v2f32);
|
|
vfmsq_f32(v4f32, v4f32, v4f32);
|
|
}
|