2018-08-07 15:49:04 +08:00
|
|
|
// REQUIRES: amdgpu-registered-target
|
|
|
|
// RUN: %clang_cc1 -triple amdgcn-- -target-cpu tahiti -verify -S -o - %s
|
|
|
|
|
2018-08-10 06:18:37 +08:00
|
|
|
void test_ci_biltins()
|
2018-08-07 15:49:04 +08:00
|
|
|
{
|
|
|
|
__builtin_amdgcn_s_dcache_inv_vol(); // expected-error {{'__builtin_amdgcn_s_dcache_inv_vol' needs target feature ci-insts}}
|
2018-08-10 06:18:37 +08:00
|
|
|
__builtin_amdgcn_buffer_wbinvl1_vol(); // expected-error {{'__builtin_amdgcn_buffer_wbinvl1_vol' needs target feature ci-insts}}
|
2018-08-07 15:49:04 +08:00
|
|
|
}
|