summaryrefslogtreecommitdiffstats
path: root/test/Sema/attr-regparm.c
blob: 944f01489c8b9daf4acfdd15d5793d39ae192705 (plain)
1
2
3
4
5
6
7
// RUN: clang-cc -triple i386-apple-darwin9 -fsyntax-only -verify %s

__attribute((regparm(2))) int x(void);
__attribute((regparm(1.0))) int x(void); // expected-error{{'regparm' attribute requires integer constant}}
__attribute((regparm(-1))) int x(void); // expected-error{{'regparm' parameter must be between 0 and 3 inclusive}}
__attribute((regparm(5))) int x(void); // expected-error{{'regparm' parameter must be between 0 and 3 inclusive}}
__attribute((regparm(5,3))) int x(void); // expected-error{{attribute requires 1 argument(s)}}
OpenPOWER on IntegriCloud