29 lines · plain
1// REQUIRES: amdgpu-registered-target2// REQUIRES: x86-registered-target3 4// RUN: %clang_cc1 -triple amdgcn-amd-amdhsa -aux-triple x86_64-unknown-linux-gnu -fcuda-is-device -fsyntax-only -verify %s5 6void call_amdgpu_builtins() {7 __builtin_amdgcn_fence(); // expected-error {{too few arguments to function call, expected at least 2, have 0}}8 __builtin_amdgcn_atomic_inc32(); // expected-error {{too few arguments to function call, expected 4, have 0}}9 __builtin_amdgcn_atomic_inc32(0); // expected-error {{too few arguments to function call, expected 4, have 1}}10 __builtin_amdgcn_atomic_inc32(0, 0); // expected-error {{too few arguments to function call, expected 4, have 2}}11 __builtin_amdgcn_atomic_inc32(0, 0, 0); // expected-error {{too few arguments to function call, expected 4, have 3}}12 __builtin_amdgcn_atomic_inc64(); // expected-error {{too few arguments to function call, expected 4, have 0}}13 __builtin_amdgcn_atomic_dec32(); // expected-error {{too few arguments to function call, expected 4, have 0}}14 __builtin_amdgcn_atomic_dec64(); // expected-error {{too few arguments to function call, expected 4, have 0}}15 __builtin_amdgcn_div_scale(); // expected-error {{too few arguments to function call, expected 4, have 0}}16 __builtin_amdgcn_div_scale(0); // expected-error {{too few arguments to function call, expected 4, have 1}}17 __builtin_amdgcn_div_scale(0, 0); // expected-error {{too few arguments to function call, expected 4, have 2}}18 __builtin_amdgcn_div_scale(0, 0, 0); // expected-error {{too few arguments to function call, expected 4, have 3}}19 __builtin_amdgcn_div_scalef(); // expected-error {{too few arguments to function call, expected 4, have 0}}20 __builtin_amdgcn_ds_faddf(); // expected-error {{too few arguments to function call, expected 5, have 0}}21 __builtin_amdgcn_ds_fminf(); // expected-error {{too few arguments to function call, expected 5, have 0}}22 __builtin_amdgcn_ds_fmaxf(); // expected-error {{too few arguments to function call, expected 5, have 0}}23 __builtin_amdgcn_ds_append(); // expected-error {{too few arguments to function call, expected 1, have 0}}24 __builtin_amdgcn_ds_consume(); // expected-error {{too few arguments to function call, expected 1, have 0}}25 __builtin_amdgcn_is_shared(); // expected-error {{too few arguments to function call, expected 1, have 0}}26 __builtin_amdgcn_is_private(); // expected-error {{too few arguments to function call, expected 1, have 0}}27}28 29