Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
| 2 | // RUN: %clang_cc1 -fsyntax-only -triple x86_64-apple-darwin9 -verify %s |
Daniel Dunbar | 20e5db7 | 2008-09-03 21:17:21 +0000 | [diff] [blame] | 3 | |
| 4 | int a[10]; |
| 5 | |
| 6 | int f0() { |
| 7 | return __builtin_object_size(&a); // expected-error {{too few arguments to function}} |
| 8 | } |
| 9 | int f1() { |
| 10 | return (__builtin_object_size(&a, 0) + |
| 11 | __builtin_object_size(&a, 1) + |
| 12 | __builtin_object_size(&a, 2) + |
| 13 | __builtin_object_size(&a, 3)); |
| 14 | } |
| 15 | int f2() { |
| 16 | return __builtin_object_size(&a, -1); // expected-error {{argument should be a value from 0 to 3}} |
| 17 | } |
| 18 | int f3() { |
| 19 | return __builtin_object_size(&a, 4); // expected-error {{argument should be a value from 0 to 3}} |
| 20 | } |
Chris Lattner | 037379d | 2008-09-28 06:05:35 +0000 | [diff] [blame] | 21 | |
| 22 | |
| 23 | // rdar://6252231 - cannot call vsnprintf with va_list on x86_64 |
| 24 | void f4(const char *fmt, ...) { |
| 25 | __builtin_va_list args; |
Fariborz Jahanian | 3e6a0be | 2014-09-18 17:58:27 +0000 | [diff] [blame] | 26 | __builtin___vsnprintf_chk (0, 42, 0, 11, fmt, args); // expected-warning {{'__builtin___vsnprintf_chk' will always overflow destination buffer}} |
Chris Lattner | 037379d | 2008-09-28 06:05:35 +0000 | [diff] [blame] | 27 | } |
| 28 | |
Fariborz Jahanian | a3d8879 | 2014-09-22 17:11:59 +0000 | [diff] [blame^] | 29 | // rdar://18334276 |
| 30 | typedef unsigned long size_t; |
| 31 | void * memcset(void *restrict dst, int src, size_t n); |
| 32 | void * memcpy(void *restrict dst, const void *restrict src, size_t n); |
| 33 | |
| 34 | #define memset(dest, src, len) __builtin___memset_chk(dest, src, len, __builtin_object_size(dest, 0)) |
| 35 | #define memcpy(dest, src, len) __builtin___memcpy_chk(dest, src, len, __builtin_object_size(dest, 0)) |
| 36 | #define memcpy1(dest, src, len) __builtin___memcpy_chk(dest, src, len, __builtin_object_size(dest, 4)) |
| 37 | #define NULL ((void *)0) |
| 38 | |
| 39 | void f5(void) |
| 40 | { |
| 41 | char buf[10]; |
| 42 | memset((void *)0x100000000ULL, 0, 0x1000); |
| 43 | memcpy((char *)NULL + 0x10000, buf, 0x10); |
| 44 | memcpy1((char *)NULL + 0x10000, buf, 0x10); // expected-error {{argument should be a value from 0 to 3}} |
| 45 | } |