mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 17:26:04 +00:00

Summary: CUDA (well, strictly speaking, NVPTX) doesn't support aliases. Reviewers: echristo Subscribers: cfe-commits, jhen, tra Differential Revision: http://reviews.llvm.org/D16502 llvm-svn: 258641
12 lines
405 B
Plaintext
12 lines
405 B
Plaintext
// RUN: %clang_cc1 -triple nvptx-unknown-cuda -fsyntax-only -fcuda-is-device -verify -DEXPECT_ERR %s
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -verify %s
|
|
|
|
// The alias attribute is not allowed in CUDA device code.
|
|
void bar();
|
|
__attribute__((alias("bar"))) void foo();
|
|
#ifdef EXPECT_ERR
|
|
// expected-error@-2 {{CUDA does not support aliases}}
|
|
#else
|
|
// expected-no-diagnostics
|
|
#endif
|