brintos

brintos / llvm-project-archived public Read only

0
0
Text · 574 B · 8949324 Raw
18 lines · plain
1// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -fnative-half-type -fnative-int16-type -emit-llvm-only -disable-llvm-passes -verify -verify-ignore-unexpected2 3 4double test_int_builtin(double p0) {5  return countbits(p0);6  // expected-error@-1 {{call to 'countbits' is ambiguous}}7}8 9double2 test_int_builtin_2(double2 p0) {10  return countbits(p0);11  // expected-error@-1 {{call to 'countbits' is ambiguous}}12}13 14double test_int_builtin_3(float p0) {15  return countbits(p0);16  // expected-error@-1 {{call to 'countbits' is ambiguous}}17}18