You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following program might be considered to be guaranteed to run out of memory, but LLVM actually compiles it in a way that it does not:
int *x = malloc(SIZE_MAX);
int *y = malloc(SIZE_MAX);if(x && y){printf("This is unreachable. I could deref a NULL pointer and this program would still be fine.");}