[clang] [llvm] Add length HLSL function to DirectX Backend (PR #101256)

Farzon Lotfi via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 31 11:18:28 PDT 2024


================
@@ -0,0 +1,107 @@
+; RUN: opt -S  -dxil-intrinsic-expansion  < %s | FileCheck %s --check-prefixes=CHECK,EXPCHECK
+; RUN: opt -S  -dxil-op-lower  < %s | FileCheck %s --check-prefixes=CHECK,DOPCHECK
+
+; ModuleID = 'D:\llvm-project\clang\test\CodeGenHLSL\builtins\length.hlsl'
+source_filename = "D:\\llvm-project\\clang\\test\\CodeGenHLSL\\builtins\\length.hlsl"
----------------
farzonl wrote:

That doesn't sound right these are some examples where we doing do it:
- https://github.com/llvm/llvm-project/blob/main/llvm/test/CodeGen/DirectX/clamp.ll
- https://github.com/llvm/llvm-project/blob/main/llvm/test/CodeGen/DirectX/asin.ll

What you need tp do is add  the triple via a flag like so: `-mtriple=dxil-pc-shadermodel6.3-library` 

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


More information about the cfe-commits mailing list