brintos

brintos / llvm-project-archived public Read only

0
0
Text · 391 B · 1a516aa Raw
13 lines · plain
1// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -emit-llvm -o %t %s2// RUN: grep "ib1b14" %t | count 13// RUN: %clang_cc1 -triple i386-unknown-unknown -fobjc-runtime=macosx-fragile-10.5 -fobjc-runtime=gcc -emit-llvm -o %t %s4// RUN: grep "ib32i1b33i14" %t | count 15 6struct foo{7	int a;8	int b:1;9	int c:14;10};11 12const char *encoding = @encode(struct foo);13