UndefValue.hlsl 181 B

123456789
  1. // RUN: %dxc -E main -T ps_6_0 %s | FileCheck %s
  2. // CHECK: Instructions should not read uninitialized value
  3. float main(snorm float b : B) : SV_DEPTH
  4. {
  5. float a;
  6. return b + a;
  7. }