summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/aarch64-neon.cpp
blob: 78876e2b08ec9767084d3511ac97214444871545 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// REQUIRES: aarch64-registered-target
// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +neon \
// RUN:   -ffp-contract=fast -S -O3 -o - %s | FileCheck %s
// REQUIRES: arm64-registered-target
// RUN: %clang_cc1 -triple arm64-none-linux-gnu -target-feature +neon \
// RUN:   -ffp-contract=fast -S -O3 -o - %s | FileCheck %s

// Test whether arm_neon.h can be used in .cpp file.

#include "arm_neon.h"

poly64x1_t test_vld1_p64(poly64_t const * ptr) {
  // CHECK: test_vld1_p64
  return vld1_p64(ptr);
  // CHECK:  {{ld1 { v[0-9]+.1d }|ldr d[0-9]+}}, [{{x[0-9]+|sp}}]
}
OpenPOWER on IntegriCloud