| 301 | } |
| 302 | |
| 303 | void func1b(std::vector<void*>& allocations) |
| 304 | { |
| 305 | for (int i = 0; i < 16; ++i) |
| 306 | { |
| 307 | void*p = malloc(256); |
| 308 | g_dont_optimize = p; |
| 309 | allocations.push_back(p); |
| 310 | func2(allocations); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | TEST(dmMemProfile, TestTrace1) |
| 315 | { |