blob: 05c72c514ca267322e0d9e5554f8e296460d75f5 [file] [log] [blame]
// RUN: %clang_cc1 -emit-llvm -o - -triple amdgcn %s | FileCheck %s
struct A {
int x[100];
};
int f(struct A a);
int g() {
struct A a;
// CHECK: call i32 @f(%struct.A addrspace(5)* byval{{.*}}%a)
return f(a);
}
// CHECK: declare i32 @f(%struct.A addrspace(5)* byval{{.*}})