[clang] [llvm] Adding splitdouble HLSL function (PR #109331)
Justin Bogner via cfe-commits
cfe-commits at lists.llvm.org
Sat Oct 26 17:07:19 PDT 2024
================
@@ -5897,7 +5897,7 @@ RValue CodeGenFunction::EmitCall(const CGFunctionInfo &CallInfo,
// Emit any call-associated writebacks immediately. Arguably this
// should happen after any return-value munging.
if (CallArgs.hasWritebacks())
- emitWritebacks(*this, CallArgs);
+ CodeGenFunction::EmitWritebacks(CallArgs);
----------------
bogner wrote:
We're in `CodeGenFunction`, aren't we? I think this can just be spelled `EmitWritebacks(CallArgs);`
https://github.com/llvm/llvm-project/pull/109331
More information about the cfe-commits
mailing list