blob: 8edc41b6ce91607f950981a9b58af4acb19b3674 [file] [log] [blame]
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001// 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}}
Stephen Hines176edba2014-12-01 14:53:08 -08009__launch_bounds__() void Test4(void); // expected-error {{'launch_bounds' attribute takes at least 1 argument}}
Stephen Hines6bcf27b2014-05-29 04:14:42 -070010
11int Test5 __launch_bounds__(128, 7); // expected-warning {{'launch_bounds' attribute only applies to functions and methods}}