[clang] [HLSL] Implement the dst HLSL Function (PR #133828)

Ashley Coleman via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 7 09:40:00 PDT 2025


================
@@ -0,0 +1,57 @@
+// RUN: %clang_cc1 -finclude-default-header -x hlsl -triple dxil-pc-shadermodel6.2-library %s -fnative-half-type -emit-llvm -disable-llvm-passes -o - | FileCheck %s
+
+
+// CHECK-LABEL: linkonce_odr noundef nofpclass(nan inf) <4 x float> @_ZN4hlsl8__detail8dst_implIfEEDv4_T_S3_S3_(
----------------
V-FEXrt wrote:

These are far too specific and will probably break in the future. Please simplify to the minimum thing that you need to check. In this case that is the following:
- the `define` keyword
- the expected type (<4 x float>)
- the demangled function name (dst_impl) 

Something like
```
// CHECK-LABEL: define {{alpha/space/paren regex}} <4 x float> @{{alpha/num/under regex}}dst_impl{{regex}}(
```

All the `CHECK-LABEL`s should be updated 

https://github.com/llvm/llvm-project/pull/133828


More information about the cfe-commits mailing list