1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
8 lines
178 B
C
8 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;
|
|
}
|