[clang] [llvm] Adding splitdouble HLSL function (PR #109331)

Tex Riddell via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 22 13:27:13 PDT 2024


================
@@ -5149,6 +5152,9 @@ class CodeGenFunction : public CodeGenTypeCache {
                            SourceLocation ArgLoc, AbstractCallee AC,
                            unsigned ParmNum);
 
+  /// EmitWriteback - Emit callbacks for function.
+  void EmitWritebacks(CodeGenFunction &CGF, const CallArgList &Args);
----------------
tex3d wrote:

This isn't a static method, but it's signature and use make it look like you meant for it to be.  It seems like it could just be a regular method though.

```suggestion
  void EmitWritebacks(const CallArgList &Args);
```

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


More information about the cfe-commits mailing list