From c18e0bd34f4a32cfb317c19af1bcdca70bb4da54 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Sat, 14 Dec 2019 23:56:29 +0000 Subject: [PATCH] [dxso] Correctly mark output slots as used Pretty silly oversight on my behalf. --- src/dxso/dxso_compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dxso/dxso_compiler.cpp b/src/dxso/dxso_compiler.cpp index 534af2ca4..ae2e2aece 100644 --- a/src/dxso/dxso_compiler.cpp +++ b/src/dxso/dxso_compiler.cpp @@ -3182,7 +3182,7 @@ void DxsoCompiler::emitControlFlowGenericLoop( m_module.setDebugName(outputPtr, name.c_str()); - m_interfaceSlots.outputSlots |= slot; + m_interfaceSlots.outputSlots |= 1u << slot; m_entryPointInterfaces.push_back(outputPtr); };