Sign in
llvm
/
llvm-project
/
clang
/
6894a166939bd190502df67ff8f1716b6cad65be
/
.
/
test
/
SemaCUDA
/
gnu-inline.cu
blob: e383082f2a773f6b0309f48ffd1f89bb0c0e5823 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
#include
"Inputs/cuda.h"
// expected-no-diagnostics
// Check that we can handle gnu_inline functions when compiling in CUDA mode.
void
foo
();
extern
inline
__attribute__
((
gnu_inline
))
void
bar
()
{
foo
();
}