You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
293 B
15 lines
293 B
7 months ago
|
// RUN: %clang_cc1 -triple=armv7-none-eabi < %s -S -emit-llvm | FileCheck %s
|
||
|
|
||
|
struct foo {
|
||
|
long long a;
|
||
|
char b;
|
||
|
int c:16;
|
||
|
int d[16];
|
||
|
};
|
||
|
|
||
|
// CHECK: %struct.foo* byval(%struct.foo) align 8 %z
|
||
|
long long bar(int a, int b, int c, int d, int e,
|
||
|
struct foo z) {
|
||
|
return z.a;
|
||
|
}
|