blob: c3349d8e97b7b05839a32a96e8a2b8633281a10e [file] [log] [blame]
Daniel Dunbar2d6ca8d2008-08-21 02:51:29 +00001// RUN: clang %s -emit-llvm -o %t
Nuno Lopes9141bee2008-06-01 22:53:53 +00002
3void *malloc(int size) __attribute__ ((__nothrow__));
4
5inline static void __zend_malloc() {
6 malloc(1);
7}
8
9void *malloc(int size) __attribute__ ((__nothrow__));
10
11void fontFetch() {
12 __zend_malloc(1);
13}