brintos

brintos / llvm-project-archived public Read only

0
0
Text · 177 B · 652197f Raw
11 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o -2 3int main (void) {4  struct foo {5    unsigned a:16;6    unsigned b:32 __attribute__ ((packed));7  } x;8  x.b = 0x56789abcL;9  return 0;10}11