[AMDGPU][True16][CodeGen] true16 codegen pattern for v_med3_u/i16 (#121850)
[llvm-project.git] / clang / test / CodeGenHLSL / disable_opt.hlsl
blobbfffe76cfa9def696cdda00b3410dc618c266422
1 // RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -O0 -emit-llvm -xhlsl -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple dxil-pc-shadermodel6.3-library -O3 -emit-llvm -xhlsl -o - %s | FileCheck %s --check-prefix=OPT
4 // CHECK:!"dx.disable_optimizations", i32 1}
6 // OPT-NOT:"dx.disable_optimizations"
8 float bar(float a, float b);
10 float foo(float a, float b) {
11   return bar(a, b);