From 5120c1cd072548654c9ce79fa85426a5e48736c4 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Wed, 2 Jul 2025 03:03:41 +0800 Subject: extend fiddle to allow custom lua splices in more places (#7559) * Add fkYAML submodule * Generate slang-ir-inst-defs.h from slang-ir-inst-defs.yaml * generate ir-inst-defs.h * neaten things * neaten inst def parser * add rapidyaml submodule * remove fkyaml * remove fkyaml submodule * remove use of ir-inst-defs.h * format and warnings * fix wasm build * tidy * remove rapidyaml * Extend fiddle to allow custom splices in more places * Use lua to describe ir insts * fix * neaten * neaten * neaten * spelling * neaten * comment comment out assert * merge --- source/slang/slang-ir-lower-com-methods.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/slang/slang-ir-lower-com-methods.cpp') diff --git a/source/slang/slang-ir-lower-com-methods.cpp b/source/slang/slang-ir-lower-com-methods.cpp index 551cccd3b..d51807aa1 100644 --- a/source/slang/slang-ir-lower-com-methods.cpp +++ b/source/slang/slang-ir-lower-com-methods.cpp @@ -32,7 +32,7 @@ struct ComMethodLoweringContext : public InstPassBase SLANG_ASSERT(callee); IRLookupWitnessMethod* innerMostCallee = callee; - while (innerMostCallee->getOperand(0)->getOp() == kIROp_LookupWitness) + while (innerMostCallee->getOperand(0)->getOp() == kIROp_LookupWitnessMethod) { innerMostCallee = as(innerMostCallee->getOperand(0)); } @@ -84,7 +84,7 @@ struct ComMethodLoweringContext : public InstPassBase auto funcValue = inst->getOperand(0); // Detect if this is a call into a COM interface method. - if (funcValue->getOp() == kIROp_LookupWitness) + if (funcValue->getOp() == kIROp_LookupWitnessMethod) { const auto operand0TypeOp = funcValue->getOperand(0)->getDataType(); if (auto tableType = as(operand0TypeOp)) -- cgit v1.2.3