Searched defs:ExportReduceInfo (Results 1 - 1 of 1) sorted by relevance

/frameworks/compile/slang/
H A Dslang_backend.cpp1080 llvm::SmallVector<llvm::Metadata *, 6> ExportReduceInfo; local
1081 // Add operand to ExportReduceInfo, padding out missing operands with
1083 auto addOperand = [&ExportReduceInfo](uint32_t Idx, llvm::Metadata *N) {
1084 while (Idx > ExportReduceInfo.size())
1085 ExportReduceInfo.push_back(nullptr);
1086 ExportReduceInfo.push_back(N);
1088 // Add string operand to ExportReduceInfo, padding out missing operands
1101 ExportReduceInfo.clear();
1123 llvm::MDTuple::get(mLLVMContext, ExportReduceInfo));

Completed in 43 milliseconds