brintos

brintos / llvm-project-archived public Read only

0
0
Text · 275 B · 0758174 Raw
14 lines · c
1// RUN: %clang_cc1 %s -emit-llvm -o %t2 3void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));4 5inline static void __zend_malloc(int) {6    malloc(1);7}8 9void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));10 11void fontFetch(void) {12    __zend_malloc(1);13}14