Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / CodeGen / struct-comma.c
blob4c1f35a7803bccad25a4a969423718f2f108d90a
1 // RUN: %clang_cc1 %s -emit-llvm -o -
3 struct S {int a, b;} x;
4 extern int r(void);
5 void a(struct S* b) {*b = (r(), x);}