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.
12 lines
351 B
12 lines
351 B
// RUN: %clang_cc1 -triple nvptx64-unknown-unknown -fcuda-is-device \
|
|
// RUN: -fsyntax-only -verify %s
|
|
|
|
#include "Inputs/cuda.h"
|
|
|
|
// expected-no-diagnostics
|
|
__device__ void __threadfence_system() {
|
|
// This shouldn't produce an error, since __nvvm_membar_sys should be
|
|
// __device__ and thus callable from device code.
|
|
__nvvm_membar_sys();
|
|
}
|