summaryrefslogtreecommitdiffstats
path: root/clang/test/Parser/lambda-attr.cu
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Parser/lambda-attr.cu')
-rw-r--r--clang/test/Parser/lambda-attr.cu33
1 files changed, 33 insertions, 0 deletions
diff --git a/clang/test/Parser/lambda-attr.cu b/clang/test/Parser/lambda-attr.cu
new file mode 100644
index 00000000000..c51e0a2b9d9
--- /dev/null
+++ b/clang/test/Parser/lambda-attr.cu
@@ -0,0 +1,33 @@
+// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
+// RUN: %clang_cc1 -std=c++11 -fsyntax-only -fcuda-is-device -verify %s
+
+// expected-no-diagnostics
+
+__attribute__((device)) void device_fn() {}
+__attribute__((device)) void hd_fn() {}
+
+__attribute__((device)) void device_attr() {
+ ([]() __attribute__((device)) { device_fn(); })();
+ ([] __attribute__((device)) () { device_fn(); })();
+ ([] __attribute__((device)) { device_fn(); })();
+
+ ([&]() __attribute__((device)){ device_fn(); })();
+ ([&] __attribute__((device)) () { device_fn(); })();
+ ([&] __attribute__((device)) { device_fn(); })();
+
+ ([&](int) __attribute__((device)){ device_fn(); })(0);
+ ([&] __attribute__((device)) (int) { device_fn(); })(0);
+}
+
+__attribute__((host)) __attribute__((device)) void host_device_attrs() {
+ ([]() __attribute__((host)) __attribute__((device)){ hd_fn(); })();
+ ([] __attribute__((host)) __attribute__((device)) () { hd_fn(); })();
+ ([] __attribute__((host)) __attribute__((device)) { hd_fn(); })();
+
+ ([&]() __attribute__((host)) __attribute__((device)){ hd_fn(); })();
+ ([&] __attribute__((host)) __attribute__((device)) () { hd_fn(); })();
+ ([&] __attribute__((host)) __attribute__((device)) { hd_fn(); })();
+
+ ([&](int) __attribute__((host)) __attribute__((device)){ hd_fn(); })(0);
+ ([&] __attribute__((host)) __attribute__((device)) (int) { hd_fn(); })(0);
+}
OpenPOWER on IntegriCloud