12345678910111213141516171819202122232425262728293031323334353637 |
- static int global[123]
- __attribute__ ((heap_allocated, used));
- extern int external[123]
- __attribute__ ((heap_allocated));
- void
- foo (size_t size)
- {
- float scalar
- __attribute__ ((heap_allocated));
- float *ptr
- __attribute__ ((heap_allocated));
- float incomp[]
- __attribute__ ((heap_allocated));
- float incomp2[size][3][]
- __attribute__ ((heap_allocated));
- }
|