1 // RUN: %clang_cc1 -triple arm-linux-guneabi \
2 // RUN: -target-cpu cortex-a8 \
3 // RUN: -emit-llvm -w -O1 -o - %s | FileCheck --check-prefix=CHECK-ARM %s
5 // RUN: %clang_cc1 -triple arm64-linux-gnueabi \
6 // RUN: -target-feature +neon \
7 // RUN: -emit-llvm -w -O1 -o - %s | FileCheck --check-prefix=CHECK-AARCH64 %s
9 // REQUIRES: aarch64-registered-target || arm-registered-target
11 // Test if int64_t and uint64_t can be correctly mangled.
15 // CHECK-AARCH64: f1l(
18 // CHECK-AARCH64: f2m(
19 void f2(uint64_t a
) {}
21 // CHECK-AARCH64: f3Pl(
22 void f3(int64_t *ptr
) {}
24 // CHECK-AARCH64: f4Pm(
25 void f4(uint64_t *ptr
) {}