diff options
Diffstat (limited to 'clang/test/CodeGen/merge-attrs.c')
-rw-r--r-- | clang/test/CodeGen/merge-attrs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/merge-attrs.c b/clang/test/CodeGen/merge-attrs.c index c3349d8e97b..3c1d62aeca3 100644 --- a/clang/test/CodeGen/merge-attrs.c +++ b/clang/test/CodeGen/merge-attrs.c @@ -1,12 +1,12 @@ // RUN: clang %s -emit-llvm -o %t -void *malloc(int size) __attribute__ ((__nothrow__)); +void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__)); inline static void __zend_malloc() { malloc(1); } -void *malloc(int size) __attribute__ ((__nothrow__)); +void *malloc(__SIZE_TYPE__ size) __attribute__ ((__nothrow__)); void fontFetch() { __zend_malloc(1); |