Skip to content

Commit 078d65a

Browse files
committed
update diagnostic message
1 parent 75ecbb7 commit 078d65a

5 files changed

+20
-5
lines changed

source/slang/slang-diagnostic-defs.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2551,7 +2551,7 @@ DIAGNOSTIC(
25512551
attemptToQuerySizeOfUnsizedArray,
25522552
"cannot obtain the size of an unsized array.")
25532553

2554-
DIAGNOSTIC(56003, Error, useOfUninitializedOpaqueType, "use of uninitialized opaque type '$0'.")
2554+
DIAGNOSTIC(56003, Error, useOfUninitializedOpaqueHandle, "use of uninitialized opaque handle '$0'.")
25552555

25562556
// Metal
25572557
DIAGNOSTIC(

source/slang/slang-ir-legalize-types.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2063,7 +2063,7 @@ static LegalVal legalizeUndefined(IRTypeLegalizationContext* context, IRInst* in
20632063
if (!loc.isValid())
20642064
loc = getDiagnosticPos(containerType);
20652065

2066-
context->m_sink->diagnose(loc, Diagnostics::useOfUninitializedOpaqueType, opaqueType);
2066+
context->m_sink->diagnose(loc, Diagnostics::useOfUninitializedOpaqueHandle, opaqueType);
20672067
SLANG_ABORT_COMPILATION("use of uninitialized resource type");
20682068
}
20692069
return LegalVal();

source/slang/slang-legalize-types.cpp

+15
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,21 @@ bool isOpaqueType(IRType* type, List<IRType*>& opaqueTypes)
227227
}
228228
}
229229

230+
if (auto tupleType = as<IRTupleTypeBase>(type))
231+
{
232+
for (UInt i = 0; i < tupleType->getOperandCount(); i++)
233+
{
234+
if (auto elementType = as<IRType>(tupleType->getOperand(i)))
235+
{
236+
if (isOpaqueType(elementType, opaqueTypes))
237+
{
238+
opaqueTypes.add(type);
239+
return true;
240+
}
241+
}
242+
}
243+
}
244+
230245
return false;
231246
}
232247

tests/diagnostics/uninitialized-resource-type.slang.1.expected

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ standard error = {
33
tests/diagnostics/uninitialized-resource-type.slang(40): warning 41016: use of uninitialized variable 'foo'
44
const let result = process(foo);
55
^
6-
tests/diagnostics/uninitialized-resource-type.slang(40): error 56003: use of uninitialized opaque type 'array<Texture2D,2>'.
6+
tests/diagnostics/uninitialized-resource-type.slang(40): error 56003: use of uninitialized opaque handle 'array<Texture2D,2>'.
77
const let result = process(foo);
88
^
99
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
result code = -1
22
standard error = {
3-
tests/diagnostics/uninitialized-resource-type.slang(35): warning 41016: use of uninitialized variable 'foo'
3+
tests/diagnostics/uninitialized-resource-type.slang(40): warning 41016: use of uninitialized variable 'foo'
44
const let result = process(foo);
55
^
6-
tests/diagnostics/uninitialized-resource-type.slang(35): error 56003: use of uninitialized opaque type 'Texture2D'.
6+
tests/diagnostics/uninitialized-resource-type.slang(40): error 56003: use of uninitialized opaque handle 'Texture2D'.
77
const let result = process(foo);
88
^
99
}

0 commit comments

Comments
 (0)