| 1 | #include <stdint.h> |
|---|---|
| 2 | #include <stdio.h> |
| 3 | |
| 4 | extern int foo(); |
| 5 | extern int bar(); |
| 6 | extern int baaz(int i); |
| 7 | |
| 8 | int main() |
| 9 | { |
| 10 | int32_t index; |
| 11 | |
| 12 | foo(); |
| 13 | |
| 14 | index = 512; |
| 15 | |
| 16 | if (bar()) |
| 17 | { |
| 18 | printf(format: "COMPILER PLEASE STOP HERE\n"); |
| 19 | index = 256; |
| 20 | } |
| 21 | |
| 22 | baaz(i: index); |
| 23 | } |
| 24 |
