summaryrefslogtreecommitdiff
path: root/source/slang/slang-ir-lower-com-methods.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-ir-lower-com-methods.cpp')
-rw-r--r--source/slang/slang-ir-lower-com-methods.cpp4
1 files changed, 2 insertions, 2 deletions
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<IRLookupWitnessMethod>(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<IRWitnessTableTypeBase>(operand0TypeOp))