blob: 50a924e01d948d2591016f24f1944338fe748bce [file] [log] [blame]
#include <stdint.h>
#include <stdio.h>
extern int foo();
extern int bar();
extern int baaz(int i);
int main()
{
int32_t index;
foo();
index = 512;
if (bar())
{
printf("COMPILER PLEASE STOP HERE\n");
index = 256;
}
baaz(index);
}