mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
7 lines
178 B
C
7 lines
178 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
struct __attribute((packed)) x {int a : 24;};
|
|
int a(struct x* g) {
|
|
// CHECK: load i16
|
|
// CHECK: load i8
|
|
return g->a;
|
|
}
|