Merge pull request #5081 from MathiasVP/indirection-in-dataflow-models

C++: Add more indirection flow in dataflow models
This commit is contained in:
Geoffrey White
2021-02-04 11:55:34 +00:00
committed by GitHub
6 changed files with 40 additions and 25 deletions

View File

@@ -491,8 +491,8 @@ void test_vector_emplace() {
std::vector<int> v1(10), v2(10);
v1.emplace_back(source());
sink(v1); // $ ast MISSING: ir
sink(v1); // $ ast,ir
v2.emplace(v2.begin(), source());
sink(v2); // $ ast MISSING: ir
sink(v2); // $ ast,ir
}