blob: 0793d64b1017a3cc8f5da4cd1a029aad7db227de [file] [log] [blame]
// RUN: %clang_cc1 -triple nvptx64-unknown-unknown -fcuda-is-device \
// RUN: -fsyntax-only -verify %s
// RUN: %clang_cc1 -triple nvptx64-unknown-unknown -fcuda-is-device \
// RUN: -fcuda-target-overloads -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();
}