| Daniel Dunbar | 2d6ca8d | 2008-08-21 02:51:29 +0000 | [diff] [blame] | 1 | // RUN: clang %s -emit-llvm -o %t |
| Nuno Lopes | 9141bee | 2008-06-01 22:53:53 +0000 | [diff] [blame] | 2 | |
| 3 | void *malloc(int size) __attribute__ ((__nothrow__)); | ||||
| 4 | |||||
| 5 | inline static void __zend_malloc() { | ||||
| 6 | malloc(1); | ||||
| 7 | } | ||||
| 8 | |||||
| 9 | void *malloc(int size) __attribute__ ((__nothrow__)); | ||||
| 10 | |||||
| 11 | void fontFetch() { | ||||
| 12 | __zend_malloc(1); | ||||
| 13 | } | ||||