diff options
Diffstat (limited to 'source/slang/slang-ir.cpp')
| -rw-r--r-- | source/slang/slang-ir.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source/slang/slang-ir.cpp b/source/slang/slang-ir.cpp index cac49f5f7..fb121d245 100644 --- a/source/slang/slang-ir.cpp +++ b/source/slang/slang-ir.cpp @@ -967,6 +967,18 @@ namespace Slang ioOperands.add(m_elementTypeLayout); } + // + // IRPointerTypeLayout + // + + void IRPointerTypeLayout::Builder::addOperandsImpl(List<IRInst*>& ioOperands) + { + SLANG_UNUSED(ioOperands); + // TODO(JS): For now we don't store the value types layout to avoid + // infinite recursion. + //ioOperands.add(m_valueTypeLayout); + } + // // IRStreamOutputTypeLayout // |
