xref: /aosp_15_r20/external/clang/test/CodeGen/2007-02-04-EmptyStruct.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 %s -O3 -emit-llvm -o -
2 // PR1175
3 
4 struct empty { };
5 
foo(struct empty * p)6 void foo(struct empty *p) {
7    p++;
8 }
9 
10