blob: 474b17225ab3cafa8d3941d0a7c00e84d8432496 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -emit-llvm -o %t
Nuno Lopes9141bee2008-06-01 22:53:53 +00002
Douglas Gregor3e41d602009-02-13 23:20:09 +00003void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
Nuno Lopes9141bee2008-06-01 22:53:53 +00004
5inline static void __zend_malloc() {
6 malloc(1);
7}
8
Douglas Gregor3e41d602009-02-13 23:20:09 +00009void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
Nuno Lopes9141bee2008-06-01 22:53:53 +000010
11void fontFetch() {
12 __zend_malloc(1);
13}