1 // RUN: %clang_cc1 -triple armv8.2a-arm-none-eabi -target-feature +neon \
2 // RUN:  -emit-llvm -o - %s | FileCheck %s
3 
4 // Test that we can use the poly64 type on AArch32
5 
6 #include <arm_neon.h>
7 
8 // CHECK-LABEL: @test_poly64
9 // CHECK: ret i64 %0
10 poly64_t test_poly64(poly64_t a) {
11   return a;
12 }
13