
Conversion performed using the script at: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only tests where no manual fixup was required.
15 lines
292 B
C
15 lines
292 B
C
// 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: ptr noundef 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;
|
|
}
|