blob: 907526dd685a966531b4b0aadab3f2cf8f35ea14 [file] [log] [blame]
// RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -emit-llvm -xhlsl -o - %s | FileCheck %s
// CHECK:!dx.valver = !{![[valver:[0-9]+]]}
// CHECK:![[valver]] = !{i32 1, i32 8}
float bar(float a, float b);
float foo(float a, float b) {
return bar(a, b);
}