blob: fc7de1ddfac8f965c92a3261f3f277c6d74442ba [file] [log] [blame]
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001// REQUIRES: arm64-registered-target
2// RUN: %clang_cc1 -triple arm64-none-linux-gnu -target-feature +neon \
Hao Liudd127802013-11-18 06:33:43 +00003// RUN: -ffp-contract=fast -S -O3 -o - %s | FileCheck %s
4
5// Test whether arm_neon.h can be used in .cpp file.
6
7#include "arm_neon.h"
8
9poly64x1_t test_vld1_p64(poly64_t const * ptr) {
10 // CHECK: test_vld1_p64
11 return vld1_p64(ptr);
Stephen Hines6bcf27b2014-05-29 04:14:42 -070012 // CHECK: {{ld1 { v[0-9]+.1d }|ldr d[0-9]+}}, [{{x[0-9]+|sp}}]
Hao Liudd127802013-11-18 06:33:43 +000013}