@@ -25,7 +25,7 @@ namespace Slang
25
25
auto anyValueSize = sharedContext->getInterfaceAnyValueSize (interfaceType, inst->sourceLoc );
26
26
auto anyValueType = builder->getAnyValueType (anyValueSize);
27
27
auto rttiType = builder->getPtrType (builder->getRTTIType ());
28
- auto tupleType = builder->getTupleType (anyValueType , witnessTableType, rttiType );
28
+ auto tupleType = builder->getTupleType (rttiType , witnessTableType, anyValueType );
29
29
30
30
IRInst* rttiObject = inst->getRTTI ();
31
31
if (auto type = as<IRType>(rttiObject))
@@ -36,7 +36,7 @@ namespace Slang
36
36
IRInst* packedValue = value;
37
37
if (valueType->op != kIROp_AnyValueType )
38
38
packedValue = builder->emitPackAnyValue (anyValueType, value);
39
- IRInst* tupleArgs[] = { packedValue , inst->getWitnessTable (), rttiObject };
39
+ IRInst* tupleArgs[] = {rttiObject , inst->getWitnessTable (), packedValue };
40
40
auto tuple = builder->emitMakeTuple (tupleType, 3 , tupleArgs);
41
41
inst->replaceUsesWith (tuple);
42
42
inst->removeAndDeallocate ();
@@ -66,7 +66,7 @@ namespace Slang
66
66
67
67
void processExtractExistentialValue (IRExtractExistentialValue* inst)
68
68
{
69
- processExtractExistentialElement (inst, 0 );
69
+ processExtractExistentialElement (inst, 2 );
70
70
}
71
71
72
72
void processExtractExistentialWitnessTable (IRExtractExistentialWitnessTable* inst)
@@ -76,7 +76,7 @@ namespace Slang
76
76
77
77
void processExtractExistentialType (IRExtractExistentialType* inst)
78
78
{
79
- processExtractExistentialElement (inst, 2 );
79
+ processExtractExistentialElement (inst, 0 );
80
80
}
81
81
82
82
void processInst (IRInst* inst)
0 commit comments