From 65103bc9a0c72117d3c9410e361947cdd568ae55 Mon Sep 17 00:00:00 2001 From: Ellie Hermaszewska Date: Sat, 13 May 2023 06:33:26 +0800 Subject: Fusion pass for saturated_cooperation (#2874) * Fusion pass for saturated_cooperation * simplify assert * regenerate vs projects * missing test output files * rename shadowing variable to appease msvc * Fuse calls to sat_coop with differing inputs * formatting * add cpu test for hof simple * Make higher-order functions into compute comparison tests * comment tests * remove redundant test * Add test to confirm inlining in sat_coop fuse * Add clarifying comment for sat coop fusing * Add KnownBuiltin decoration * s/CanUseFuncSignature/TypesFullyResolved for higher order function checking * Add TODO * spelling * Correct detection of sat_coop calls * Disable tests which are unsupported on testing infra --- source/slang/slang-ir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/slang/slang-ir.cpp') diff --git a/source/slang/slang-ir.cpp b/source/slang/slang-ir.cpp index 6adf8ee1c..72b65ea3e 100644 --- a/source/slang/slang-ir.cpp +++ b/source/slang/slang-ir.cpp @@ -3395,7 +3395,7 @@ namespace Slang return inst; } - IRInst* IRBuilder::emitCallInst( + IRCall* IRBuilder::emitCallInst( IRType* type, IRInst* pFunc, UInt argCount, -- cgit v1.2.3