StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / CodeGen / merge-attrs.c
blob474b17225ab3cafa8d3941d0a7c00e84d8432496
1 // RUN: %clang_cc1 %s -emit-llvm -o %t
3 void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
5 inline static void __zend_malloc() {
6 malloc(1);
9 void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__));
11 void fontFetch() {
12 __zend_malloc(1);