You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
268 B
14 lines
268 B
4 months ago
|
// RUN: %clang_cc1 %s -emit-llvm -o %t
|
||
|
|
||
|
void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
|
||
|
|
||
|
inline static void __zend_malloc() {
|
||
|
malloc(1);
|
||
|
}
|
||
|
|
||
|
void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
|
||
|
|
||
|
void fontFetch() {
|
||
|
__zend_malloc(1);
|
||
|
}
|