15 lines · c
1// RUN: %clang_cc1 -triple armv8.2a-arm-none-eabi -target-feature +neon \2// RUN: -emit-llvm -o - %s | FileCheck %s3 4// Test that we can use the poly64 type on AArch325 6// REQUIRES: aarch64-registered-target || arm-registered-target7 8#include <arm_neon.h>9 10// CHECK-LABEL: @test_poly6411// CHECK: ret i64 %012poly64_t test_poly64(poly64_t a) {13 return a;14}15