blob: 8edc41b6ce91607f950981a9b58af4acb19b3674 [file] [log] [blame]
Eli Bendersky3468d9d2014-04-28 22:21:28 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3#include "Inputs/cuda.h"
4
5__launch_bounds__(128, 7) void Test1(void);
6__launch_bounds__(128) void Test2(void);
7
8__launch_bounds__(1, 2, 3) void Test3(void); // expected-error {{'launch_bounds' attribute takes no more than 2 arguments}}
Aaron Ballman8ed8dbd2014-07-31 16:37:04 +00009__launch_bounds__() void Test4(void); // expected-error {{'launch_bounds' attribute takes at least 1 argument}}
Eli Bendersky3468d9d2014-04-28 22:21:28 +000010
11int Test5 __launch_bounds__(128, 7); // expected-warning {{'launch_bounds' attribute only applies to functions and methods}}