forked from OSchip/llvm-project
parent
4cd930f417
commit
7e60a6bd71
|
@ -0,0 +1,6 @@
|
|||
// RUN: %llvmgcc %s -S -o - | FileCheck %s
|
||||
struct __attribute((packed)) x {int a : 24;};
|
||||
int a(struct x* g) {
|
||||
// CHECK: load i24
|
||||
return g->a;
|
||||
}
|
Loading…
Reference in New Issue