brintos

brintos / llvm-project-archived public Read only

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