blob: 21ce63b4381fc35b2dfcc9a872d1662913034c7d [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify -pedantic
Eli Friedmand72d16e2008-05-18 18:08:51 +00002
Sebastian Redl3cb06922009-02-07 19:52:04 +00003typedef struct S S; // expected-note 3 {{forward declaration of 'struct S'}}
Eli Friedmand72d16e2008-05-18 18:08:51 +00004void a(S* b, void* c) {
Douglas Gregorc983b862009-01-23 00:36:41 +00005 void (*fp)(int) = 0;
Chandler Carruth13b21be2011-06-27 08:02:19 +00006 b++; // expected-error {{arithmetic on a pointer to an incomplete type}}
7 b += 1; // expected-error {{arithmetic on a pointer to an incomplete type}}
8 c++; // expected-warning {{arithmetic on a pointer to void is a GNU extension}}
9 c += 1; // expected-warning {{arithmetic on a pointer to void is a GNU extension}}
10 c--; // expected-warning {{arithmetic on a pointer to void is a GNU extension}}
11 c -= 1; // expected-warning {{arithmetic on a pointer to void is a GNU extension}}
Chandler Carruth66289692011-06-27 16:32:27 +000012 (void) c[1]; // expected-warning {{subscript of a pointer to void is a GNU extension}}
Chandler Carruth13b21be2011-06-27 08:02:19 +000013 b = 1+b; // expected-error {{arithmetic on a pointer to an incomplete type}}
Eli Friedmand72d16e2008-05-18 18:08:51 +000014 /* The next couple tests are only pedantic warnings in gcc */
15 void (*d)(S*,void*) = a;
Chandler Carruth13b21be2011-06-27 08:02:19 +000016 d += 1; // expected-warning {{arithmetic on a pointer to the function type 'void (S *, void *)' is a GNU extension}}
17 d++; // expected-warning {{arithmetic on a pointer to the function type 'void (S *, void *)' is a GNU extension}}
18 d--; // expected-warning {{arithmetic on a pointer to the function type 'void (S *, void *)' is a GNU extension}}
19 d -= 1; // expected-warning {{arithmetic on a pointer to the function type 'void (S *, void *)' is a GNU extension}}
20 (void)(1 + d); // expected-warning {{arithmetic on a pointer to the function type 'void (S *, void *)' is a GNU extension}}
Eli Friedmand72d16e2008-05-18 18:08:51 +000021}