| 290 | } |
| 291 | |
| 292 | void func1a(std::vector<void*>& allocations) |
| 293 | { |
| 294 | for (int i = 0; i < 16; ++i) |
| 295 | { |
| 296 | void*p = malloc(512); |
| 297 | g_dont_optimize = p; |
| 298 | allocations.push_back(p); |
| 299 | func2(allocations); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | void func1b(std::vector<void*>& allocations) |
| 304 | { |