You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
340 B
10 lines
340 B
// RUN: %clang_cc1 %s --std=c++11 -triple nvptx -emit-llvm -o - \
|
|
// RUN: -verify -fcuda-is-device -fsyntax-only -verify-ignore-unexpected=note
|
|
|
|
#include "Inputs/cuda.h"
|
|
|
|
__global__ void kernel1();
|
|
__global__ void kernel2() {
|
|
kernel1<<<1,1>>>(); // expected-error {{reference to __global__ function 'kernel1' in __global__ function}}
|
|
}
|