================
@@ -951,16 +951,15 @@ void CGHLSLRuntime::emitEntryFunction(const FunctionDecl
*FD,
OB.emplace_back("convergencectrl", bundleArgs);
}
- llvm::DenseMap<const DeclaratorDecl *, std::pair<llvm::Value *, llvm::Type
*>>
- OutputSemantic;
+ std::vector<std::pair<llvm::Value *, llvm::Type *>> OutputSemantic;
----------------
Icohedron wrote:
Perhaps a `SmallVector` should be preferred over `std::vector` here?
```suggestion
SmallVector<std::pair<llvm::Value *, llvm::Type *>> OutputSemantic;
```
https://github.com/llvm/llvm-project/pull/185550
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits