2009-12-16 04:14:24 +08:00
// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -verify %s
2009-03-28 05:06:47 +08:00
2010-06-19 05:30:25 +08:00
__attribute ( ( regparm ( 2 ) ) ) int x0 ( void ) ;
2013-07-30 22:10:17 +08:00
__attribute ( ( regparm ( 1.0 ) ) ) int x1 ( void ) ; // expected-error{{'regparm' attribute requires an integer constant}}
2010-06-19 05:30:25 +08:00
__attribute ( ( regparm ( - 1 ) ) ) int x2 ( void ) ; // expected-error{{'regparm' parameter must be between 0 and 3 inclusive}}
__attribute ( ( regparm ( 5 ) ) ) int x3 ( void ) ; // expected-error{{'regparm' parameter must be between 0 and 3 inclusive}}
2013-07-24 03:30:11 +08:00
__attribute ( ( regparm ( 5 , 3 ) ) ) int x4 ( void ) ; // expected-error{{'regparm' attribute takes one argument}}
2010-06-19 05:30:25 +08:00
void __attribute__ ( ( regparm ( 3 ) ) ) x5 ( int ) ;
void x5 ( int ) ; // expected-note{{previous declaration is here}}
2013-02-22 07:15:05 +08:00
void __attribute__ ( ( regparm ( 2 ) ) ) x5 ( int ) ; // expected-error{{function declared with regparm(2) attribute was previously declared with the regparm(3) attribute}}