blob: 5ac0217e2b890b6fd62735781471b7d3f4fcd222 [file] [log] [blame]
Nuno Lopes9141bee2008-06-01 22:53:53 +00001// RUN: clang %s -emit-llvm
2
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}