]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/pr2394.c
Vendor import of clang release_30 branch r142614:
[FreeBSD/FreeBSD.git] / test / CodeGen / pr2394.c
1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
2 struct __attribute((packed)) x {int a : 24;};
3 int a(struct x* g) {
4   // CHECK: load i16
5   // CHECK: load i8
6   return g->a;
7 }