mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 02:21:45 +00:00
9e99a4f0db
Summary: This test was accidentally not updated.
7 lines
319 B
Plaintext
7 lines
319 B
Plaintext
// RUN: %clang_cc1 -triple nvptx-unknown-cuda -fsyntax-only -fcuda-is-device -target-sdk-version=9.0 -verify %s
|
|
|
|
// The alias attribute is not allowed in CUDA device code before 10.0.
|
|
extern "C" void bar();
|
|
__attribute__((alias("bar"))) void foo();
|
|
// expected-error@-1 {{CUDA older than 10.0 does not support .alias}}
|