15 lines · c
1// RUN: %clang_cc1 -triple=armv7-none-eabi < %s -emit-llvm | FileCheck %s2 3struct foo {4 long long a;5 char b;6 int c:16;7 int d[16];8};9 10// CHECK: ptr noundef byval(%struct.foo) align 8 %z11long long bar(int a, int b, int c, int d, int e,12 struct foo z) {13 return z.a;14}15