brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1016 B · f658c33 Raw
27 lines · plain
1// RUN: %clang_cc1 -finclude-default-header -triple dxil-pc-shadermodel6.6-library %s -emit-llvm-only -disable-llvm-passes -verify2 3double test_too_few_arg() {4  return __builtin_hlsl_asdouble();5  // expected-error@-1 {{too few arguments to function call, expected 2, have 0}}6}7 8double test_too_few_arg_1(uint p0) {9  return __builtin_hlsl_asdouble(p0);10  // expected-error@-1 {{too few arguments to function call, expected 2, have 1}}11}12 13double test_too_many_arg(uint p0) {14  return __builtin_hlsl_asdouble(p0, p0, p0);15  // expected-error@-1 {{too many arguments to function call, expected 2, have 3}}16}17 18double test_non_matching(uint p0, uint2 p1) {19  return __builtin_hlsl_asdouble(p0, p1);20  // expected-error@-1 {{all arguments to '__builtin_hlsl_asdouble' must have the same type}}21}22 23double test_non_uint(uint64_t p0) {24  return __builtin_hlsl_asdouble(p0, p0);25  // expected-error@-1 {{invalid operand of type 'uint64_t' (aka 'unsigned long') where 'unsigned int' or a vector of such type is required}}26}27