1// REQUIRES: amdgpu-registered-target
2// RUN: %clang_cc1 -triple amdgcn-- -target-cpu fiji -verify -S -o - %s
3
4#pragma OPENCL EXTENSION cl_khr_fp16 : enable
5
6void test_gfx9_fmed3h(global half *out, half a, half b, half c)
7{
8  *out = __builtin_amdgcn_fmed3h(a, b, c); // expected-error {{'__builtin_amdgcn_fmed3h' needs target feature gfx9-insts}}
9}
10