2022-10-07 14:09:44 +02:00
|
|
|
// RUN: %clang_cc1 -fpass-by-value-is-noalias -triple arm64-apple-iphoneos -emit-llvm -disable-llvm-optzns %s -o - 2>&1 | FileCheck --check-prefix=WITH_NOALIAS %s
|
|
|
|
// RUN: %clang_cc1 -triple arm64-apple-iphoneos -emit-llvm -disable-llvm-optzns %s -o - 2>&1 | FileCheck --check-prefix=NO_NOALIAS %s
|
2020-09-12 14:23:36 +01:00
|
|
|
|
|
|
|
// A struct large enough so it is not passed in registers on ARM64.
|
|
|
|
struct Foo {
|
|
|
|
int a;
|
|
|
|
int b;
|
|
|
|
int c;
|
|
|
|
int d;
|
|
|
|
int e;
|
|
|
|
int f;
|
|
|
|
};
|
|
|
|
|
2022-10-07 14:09:44 +02:00
|
|
|
// WITH_NOALIAS: define{{.*}} void @take(ptr noalias noundef %arg)
|
|
|
|
// NO_NOALIAS: define{{.*}} void @take(ptr noundef %arg)
|
2020-09-12 14:23:36 +01:00
|
|
|
void take(struct Foo arg) {}
|