brintos

brintos / llvm-project-archived public Read only

0
0
Text · 452 B · c23f4a4 Raw
10 lines · plain
1// REQUIRES: amdgpu-registered-target2// RUN: %clang_cc1 -triple amdgcn-- -target-cpu tahiti -verify -S -o - %s3// RUN: %clang_cc1 -triple amdgcn-- -target-cpu hawaii -verify -S -o - %s4 5void test_vi_builtins()6{7  __builtin_amdgcn_s_dcache_wb(); // expected-error {{'__builtin_amdgcn_s_dcache_wb' needs target feature gfx8-insts}}8  (void)__builtin_amdgcn_perm(1, 2, 3); // expected-error {{'__builtin_amdgcn_perm' needs target feature gfx8-insts}}9}10