brintos

brintos / llvm-project-archived public Read only

0
0
Text · 498 B · 5e00428 Raw
13 lines · plain
1 2// 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-unexpected3 4bool test_too_few_arg() {5  return __builtin_hlsl_all();6  // expected-error@-1 {{too few arguments to function call, expected 1, have 0}}7}8 9bool test_too_many_arg(float2 p0) {10  return __builtin_hlsl_all(p0, p0);11  // expected-error@-1 {{too many arguments to function call, expected 1, have 2}}12}13