[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / CodeGen / merge-attrs.c
blob0758174d64f8f38ca4e81d1534748d34ce777cd2
1 // RUN: %clang_cc1 %s -emit-llvm -o %t
3 void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
5 inline static void __zend_malloc(int) {
6 malloc(1);
9 void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
11 void fontFetch(void) {
12 __zend_malloc(1);