1 | // RUN: %clang_cc1 -triple armv7a-none-eabi -target-feature +neon -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=AAPCS |
2 | // RUN: %clang_cc1 -triple armv7a-none-gnueabi -target-feature +neon -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=AAPCS |
3 | // RUN: %clang_cc1 -triple armv7a-none-freebsd -target-feature +neon -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=AAPCS |
4 | |
5 | // RUN: %clang_cc1 -triple armv7a-apple-ios -target-feature +neon -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=DEFAULT |
6 | // RUN: %clang_cc1 -triple armv7a-none-android -target-feature +neon -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=DEFAULT |
7 | // RUN: %clang_cc1 -triple armv7a-none-androideabi -target-feature +neon -emit-llvm -o - %s | FileCheck %s -check-prefix=CHECK -check-prefix=DEFAULT |
8 | |
9 | #include <arm_neon.h> |
10 | // Neon types have 64-bit alignment |
11 | int32x4_t gl_b; |
12 | void t3(int32x4_t *src) { |
13 | // CHECK: @t3 |
14 | gl_b = *src; |
15 | // AAPCS: store <4 x i32> {{%.*}}, <4 x i32>* @gl_b, align 8 |
16 | // DEFAULT: store <4 x i32> {{%.*}}, <4 x i32>* @gl_b, align 16 |
17 | } |
18 | |