bolt/deps/llvm-18.1.8/clang/test/CodeGenHLSL/disable_opt.hlsl

13 lines
401 B
HLSL
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -S -triple dxil-pc-shadermodel6.3-library -O0 -emit-llvm -xhlsl -o - %s | FileCheck %s
// RUN: %clang_cc1 -S -triple dxil-pc-shadermodel6.3-library -O3 -emit-llvm -xhlsl -o - %s | FileCheck %s --check-prefix=OPT
// CHECK:!"dx.disable_optimizations", i32 1}
// OPT-NOT:"dx.disable_optimizations"
float bar(float a, float b);
float foo(float a, float b) {
return bar(a, b);
}